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 center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_all_of.py b/intersight/model/hyperflex_device_package_download_state_all_of.py index 0009a74a1a..7255b67f0e 100644 --- a/intersight/model/hyperflex_device_package_download_state_all_of.py +++ b/intersight/model/hyperflex_device_package_download_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_device_package_download_state_list.py b/intersight/model/hyperflex_device_package_download_state_list.py index 7072e4519d..99ff29626f 100644 --- a/intersight/model/hyperflex_device_package_download_state_list.py +++ b/intersight/model/hyperflex_device_package_download_state_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_device_package_download_state_list_all_of.py b/intersight/model/hyperflex_device_package_download_state_list_all_of.py index 0b46c78431..f38790efe5 100644 --- a/intersight/model/hyperflex_device_package_download_state_list_all_of.py +++ b/intersight/model/hyperflex_device_package_download_state_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_device_package_download_state_response.py b/intersight/model/hyperflex_device_package_download_state_response.py index 2e0c53a806..27067abbb4 100644 --- a/intersight/model/hyperflex_device_package_download_state_response.py +++ b/intersight/model/hyperflex_device_package_download_state_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_disk_status.py b/intersight/model/hyperflex_disk_status.py index 4948fa79ae..a586152cff 100644 --- a/intersight/model/hyperflex_disk_status.py +++ b/intersight/model/hyperflex_disk_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/hyperflex_disk_status_all_of.py b/intersight/model/hyperflex_disk_status_all_of.py index bbec03f977..6d6ae70e55 100644 --- a/intersight/model/hyperflex_disk_status_all_of.py +++ b/intersight/model/hyperflex_disk_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/hyperflex_drive.py b/intersight/model/hyperflex_drive.py index 1ac15d6ca4..f6b82f7900 100644 --- a/intersight/model/hyperflex_drive.py +++ b/intersight/model/hyperflex_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/hyperflex_drive_all_of.py b/intersight/model/hyperflex_drive_all_of.py index 40050b9d87..25ab5c91ca 100644 --- a/intersight/model/hyperflex_drive_all_of.py +++ b/intersight/model/hyperflex_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/hyperflex_drive_list.py b/intersight/model/hyperflex_drive_list.py index 77c2898ecf..464f9b9e66 100644 --- a/intersight/model/hyperflex_drive_list.py +++ b/intersight/model/hyperflex_drive_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_drive_list_all_of.py b/intersight/model/hyperflex_drive_list_all_of.py index f836854852..d4f160446f 100644 --- a/intersight/model/hyperflex_drive_list_all_of.py +++ b/intersight/model/hyperflex_drive_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_drive_relationship.py b/intersight/model/hyperflex_drive_relationship.py index 0f64887dad..bea70ff7e2 100644 --- a/intersight/model/hyperflex_drive_relationship.py +++ b/intersight/model/hyperflex_drive_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 """ @@ -116,6 +116,8 @@ class HyperflexDriveRelationship(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", @@ -132,6 +134,7 @@ class HyperflexDriveRelationship(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", @@ -180,9 +183,12 @@ class HyperflexDriveRelationship(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", @@ -246,10 +252,6 @@ class HyperflexDriveRelationship(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", @@ -258,6 +260,7 @@ class HyperflexDriveRelationship(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", @@ -506,6 +509,7 @@ class HyperflexDriveRelationship(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", @@ -675,6 +679,11 @@ class HyperflexDriveRelationship(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", @@ -790,6 +799,7 @@ class HyperflexDriveRelationship(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", @@ -821,6 +831,7 @@ class HyperflexDriveRelationship(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", @@ -853,12 +864,14 @@ class HyperflexDriveRelationship(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_drive_response.py b/intersight/model/hyperflex_drive_response.py index 87b38b6688..45a850dee4 100644 --- a/intersight/model/hyperflex_drive_response.py +++ b/intersight/model/hyperflex_drive_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_entity_reference.py b/intersight/model/hyperflex_entity_reference.py index 1123bdab9d..11dceb26f4 100644 --- a/intersight/model/hyperflex_entity_reference.py +++ b/intersight/model/hyperflex_entity_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/hyperflex_entity_reference_all_of.py b/intersight/model/hyperflex_entity_reference_all_of.py index 0b061a9a89..9ac858df61 100644 --- a/intersight/model/hyperflex_entity_reference_all_of.py +++ b/intersight/model/hyperflex_entity_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/hyperflex_error_stack.py b/intersight/model/hyperflex_error_stack.py index 793021b22e..e6093306c8 100644 --- a/intersight/model/hyperflex_error_stack.py +++ b/intersight/model/hyperflex_error_stack.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_error_stack_all_of.py b/intersight/model/hyperflex_error_stack_all_of.py index b89e7896f0..90935fae36 100644 --- a/intersight/model/hyperflex_error_stack_all_of.py +++ b/intersight/model/hyperflex_error_stack_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_ext_fc_storage_policy.py b/intersight/model/hyperflex_ext_fc_storage_policy.py index a6d941f7db..f43d07317f 100644 --- a/intersight/model/hyperflex_ext_fc_storage_policy.py +++ b/intersight/model/hyperflex_ext_fc_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_ext_fc_storage_policy_all_of.py b/intersight/model/hyperflex_ext_fc_storage_policy_all_of.py index 68571f2eb4..8725431476 100644 --- a/intersight/model/hyperflex_ext_fc_storage_policy_all_of.py +++ b/intersight/model/hyperflex_ext_fc_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_ext_fc_storage_policy_list.py b/intersight/model/hyperflex_ext_fc_storage_policy_list.py index 31d3a11394..a47760b529 100644 --- a/intersight/model/hyperflex_ext_fc_storage_policy_list.py +++ b/intersight/model/hyperflex_ext_fc_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_ext_fc_storage_policy_list_all_of.py b/intersight/model/hyperflex_ext_fc_storage_policy_list_all_of.py index 8028b54549..0a7494162e 100644 --- a/intersight/model/hyperflex_ext_fc_storage_policy_list_all_of.py +++ b/intersight/model/hyperflex_ext_fc_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_ext_fc_storage_policy_relationship.py b/intersight/model/hyperflex_ext_fc_storage_policy_relationship.py index ccd46da3cb..9e03abd9b7 100644 --- a/intersight/model/hyperflex_ext_fc_storage_policy_relationship.py +++ b/intersight/model/hyperflex_ext_fc_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 """ @@ -80,6 +80,8 @@ class HyperflexExtFcStoragePolicyRelationship(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 HyperflexExtFcStoragePolicyRelationship(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 HyperflexExtFcStoragePolicyRelationship(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 HyperflexExtFcStoragePolicyRelationship(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 HyperflexExtFcStoragePolicyRelationship(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 HyperflexExtFcStoragePolicyRelationship(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 HyperflexExtFcStoragePolicyRelationship(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 HyperflexExtFcStoragePolicyRelationship(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 HyperflexExtFcStoragePolicyRelationship(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 HyperflexExtFcStoragePolicyRelationship(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_ext_fc_storage_policy_response.py b/intersight/model/hyperflex_ext_fc_storage_policy_response.py index 8b60bc11fc..6d694878fe 100644 --- a/intersight/model/hyperflex_ext_fc_storage_policy_response.py +++ b/intersight/model/hyperflex_ext_fc_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_ext_iscsi_storage_policy.py b/intersight/model/hyperflex_ext_iscsi_storage_policy.py index a8347cb584..2b9b8987af 100644 --- a/intersight/model/hyperflex_ext_iscsi_storage_policy.py +++ b/intersight/model/hyperflex_ext_iscsi_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_ext_iscsi_storage_policy_all_of.py b/intersight/model/hyperflex_ext_iscsi_storage_policy_all_of.py index 46e90ec2f8..59321ae62d 100644 --- a/intersight/model/hyperflex_ext_iscsi_storage_policy_all_of.py +++ b/intersight/model/hyperflex_ext_iscsi_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_ext_iscsi_storage_policy_list.py b/intersight/model/hyperflex_ext_iscsi_storage_policy_list.py index 64b7363fa5..a0e3ccc9b8 100644 --- a/intersight/model/hyperflex_ext_iscsi_storage_policy_list.py +++ b/intersight/model/hyperflex_ext_iscsi_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_ext_iscsi_storage_policy_list_all_of.py b/intersight/model/hyperflex_ext_iscsi_storage_policy_list_all_of.py index 556423b7fc..21a461cb40 100644 --- a/intersight/model/hyperflex_ext_iscsi_storage_policy_list_all_of.py +++ b/intersight/model/hyperflex_ext_iscsi_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_ext_iscsi_storage_policy_relationship.py b/intersight/model/hyperflex_ext_iscsi_storage_policy_relationship.py index 9582cebc37..fd0d7c1ca0 100644 --- a/intersight/model/hyperflex_ext_iscsi_storage_policy_relationship.py +++ b/intersight/model/hyperflex_ext_iscsi_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 HyperflexExtIscsiStoragePolicyRelationship(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 HyperflexExtIscsiStoragePolicyRelationship(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 HyperflexExtIscsiStoragePolicyRelationship(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 HyperflexExtIscsiStoragePolicyRelationship(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 HyperflexExtIscsiStoragePolicyRelationship(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 HyperflexExtIscsiStoragePolicyRelationship(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 HyperflexExtIscsiStoragePolicyRelationship(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 HyperflexExtIscsiStoragePolicyRelationship(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 HyperflexExtIscsiStoragePolicyRelationship(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 HyperflexExtIscsiStoragePolicyRelationship(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_ext_iscsi_storage_policy_response.py b/intersight/model/hyperflex_ext_iscsi_storage_policy_response.py index d4ebcd37af..c2679a4ba5 100644 --- a/intersight/model/hyperflex_ext_iscsi_storage_policy_response.py +++ b/intersight/model/hyperflex_ext_iscsi_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_feature_limit_entry.py b/intersight/model/hyperflex_feature_limit_entry.py index 538da1c7ee..6a84fd3760 100644 --- a/intersight/model/hyperflex_feature_limit_entry.py +++ b/intersight/model/hyperflex_feature_limit_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_feature_limit_entry_all_of.py b/intersight/model/hyperflex_feature_limit_entry_all_of.py index b1f139d387..2804a9e10b 100644 --- a/intersight/model/hyperflex_feature_limit_entry_all_of.py +++ b/intersight/model/hyperflex_feature_limit_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_feature_limit_external.py b/intersight/model/hyperflex_feature_limit_external.py index 103b5233f9..9144ed7a40 100644 --- a/intersight/model/hyperflex_feature_limit_external.py +++ b/intersight/model/hyperflex_feature_limit_external.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_feature_limit_external_all_of.py b/intersight/model/hyperflex_feature_limit_external_all_of.py index 97ad536d3c..69aa9e5eed 100644 --- a/intersight/model/hyperflex_feature_limit_external_all_of.py +++ b/intersight/model/hyperflex_feature_limit_external_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_feature_limit_external_list.py b/intersight/model/hyperflex_feature_limit_external_list.py index 6578c5faf2..e788a72796 100644 --- a/intersight/model/hyperflex_feature_limit_external_list.py +++ b/intersight/model/hyperflex_feature_limit_external_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_feature_limit_external_list_all_of.py b/intersight/model/hyperflex_feature_limit_external_list_all_of.py index d8008ee2ea..8374469c1e 100644 --- a/intersight/model/hyperflex_feature_limit_external_list_all_of.py +++ b/intersight/model/hyperflex_feature_limit_external_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_feature_limit_external_relationship.py b/intersight/model/hyperflex_feature_limit_external_relationship.py index 343c952027..6a454706d3 100644 --- a/intersight/model/hyperflex_feature_limit_external_relationship.py +++ b/intersight/model/hyperflex_feature_limit_external_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 HyperflexFeatureLimitExternalRelationship(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 HyperflexFeatureLimitExternalRelationship(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 HyperflexFeatureLimitExternalRelationship(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 HyperflexFeatureLimitExternalRelationship(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 HyperflexFeatureLimitExternalRelationship(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 HyperflexFeatureLimitExternalRelationship(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 HyperflexFeatureLimitExternalRelationship(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 HyperflexFeatureLimitExternalRelationship(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 HyperflexFeatureLimitExternalRelationship(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 HyperflexFeatureLimitExternalRelationship(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_feature_limit_external_response.py b/intersight/model/hyperflex_feature_limit_external_response.py index 0ec362ef2e..3162a76939 100644 --- a/intersight/model/hyperflex_feature_limit_external_response.py +++ b/intersight/model/hyperflex_feature_limit_external_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_feature_limit_internal.py b/intersight/model/hyperflex_feature_limit_internal.py index d7cd33ba06..618d1da86f 100644 --- a/intersight/model/hyperflex_feature_limit_internal.py +++ b/intersight/model/hyperflex_feature_limit_internal.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_feature_limit_internal_all_of.py b/intersight/model/hyperflex_feature_limit_internal_all_of.py index 541677bbdf..5b29e695b4 100644 --- a/intersight/model/hyperflex_feature_limit_internal_all_of.py +++ b/intersight/model/hyperflex_feature_limit_internal_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_feature_limit_internal_list.py b/intersight/model/hyperflex_feature_limit_internal_list.py index 0152a545d4..342bdbccad 100644 --- a/intersight/model/hyperflex_feature_limit_internal_list.py +++ b/intersight/model/hyperflex_feature_limit_internal_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_feature_limit_internal_list_all_of.py b/intersight/model/hyperflex_feature_limit_internal_list_all_of.py index 15ded84145..7e7ad4ccc2 100644 --- a/intersight/model/hyperflex_feature_limit_internal_list_all_of.py +++ b/intersight/model/hyperflex_feature_limit_internal_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_feature_limit_internal_relationship.py b/intersight/model/hyperflex_feature_limit_internal_relationship.py index 2546714a44..fcd92e067a 100644 --- a/intersight/model/hyperflex_feature_limit_internal_relationship.py +++ b/intersight/model/hyperflex_feature_limit_internal_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 HyperflexFeatureLimitInternalRelationship(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 HyperflexFeatureLimitInternalRelationship(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 HyperflexFeatureLimitInternalRelationship(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 HyperflexFeatureLimitInternalRelationship(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 HyperflexFeatureLimitInternalRelationship(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 HyperflexFeatureLimitInternalRelationship(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 HyperflexFeatureLimitInternalRelationship(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 HyperflexFeatureLimitInternalRelationship(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 HyperflexFeatureLimitInternalRelationship(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 HyperflexFeatureLimitInternalRelationship(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_feature_limit_internal_response.py b/intersight/model/hyperflex_feature_limit_internal_response.py index aeb3e3760c..9c72bccbbf 100644 --- a/intersight/model/hyperflex_feature_limit_internal_response.py +++ b/intersight/model/hyperflex_feature_limit_internal_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_file_path.py b/intersight/model/hyperflex_file_path.py index 6680188c30..af08fcd2d1 100644 --- a/intersight/model/hyperflex_file_path.py +++ b/intersight/model/hyperflex_file_path.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_file_path_all_of.py b/intersight/model/hyperflex_file_path_all_of.py index 9cdbe6cf63..6f3dfde492 100644 --- a/intersight/model/hyperflex_file_path_all_of.py +++ b/intersight/model/hyperflex_file_path_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_health.py b/intersight/model/hyperflex_health.py index 91ce79f651..d5e1c1eb0e 100644 --- a/intersight/model/hyperflex_health.py +++ b/intersight/model/hyperflex_health.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_health_all_of.py b/intersight/model/hyperflex_health_all_of.py index a5df996801..d1c54ad263 100644 --- a/intersight/model/hyperflex_health_all_of.py +++ b/intersight/model/hyperflex_health_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_health_check_definition.py b/intersight/model/hyperflex_health_check_definition.py index 2b1d0e7d54..26b1395100 100644 --- a/intersight/model/hyperflex_health_check_definition.py +++ b/intersight/model/hyperflex_health_check_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/hyperflex_health_check_definition_all_of.py b/intersight/model/hyperflex_health_check_definition_all_of.py index fbd84de6e4..1049011621 100644 --- a/intersight/model/hyperflex_health_check_definition_all_of.py +++ b/intersight/model/hyperflex_health_check_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/hyperflex_health_check_definition_list.py b/intersight/model/hyperflex_health_check_definition_list.py index 197e696ce1..a6c2f035cb 100644 --- a/intersight/model/hyperflex_health_check_definition_list.py +++ b/intersight/model/hyperflex_health_check_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/hyperflex_health_check_definition_list_all_of.py b/intersight/model/hyperflex_health_check_definition_list_all_of.py index d745523f94..f6257f4e2c 100644 --- a/intersight/model/hyperflex_health_check_definition_list_all_of.py +++ b/intersight/model/hyperflex_health_check_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/hyperflex_health_check_definition_relationship.py b/intersight/model/hyperflex_health_check_definition_relationship.py index a0baea186f..45b9876b7d 100644 --- a/intersight/model/hyperflex_health_check_definition_relationship.py +++ b/intersight/model/hyperflex_health_check_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 """ @@ -89,6 +89,8 @@ class HyperflexHealthCheckDefinitionRelationship(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 HyperflexHealthCheckDefinitionRelationship(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 HyperflexHealthCheckDefinitionRelationship(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 HyperflexHealthCheckDefinitionRelationship(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 HyperflexHealthCheckDefinitionRelationship(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 HyperflexHealthCheckDefinitionRelationship(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 HyperflexHealthCheckDefinitionRelationship(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 HyperflexHealthCheckDefinitionRelationship(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 HyperflexHealthCheckDefinitionRelationship(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 HyperflexHealthCheckDefinitionRelationship(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_health_check_definition_response.py b/intersight/model/hyperflex_health_check_definition_response.py index 71ff8e28c6..9f8d0537e9 100644 --- a/intersight/model/hyperflex_health_check_definition_response.py +++ b/intersight/model/hyperflex_health_check_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/hyperflex_health_check_execution.py b/intersight/model/hyperflex_health_check_execution.py index d79522305b..5991079c6a 100644 --- a/intersight/model/hyperflex_health_check_execution.py +++ b/intersight/model/hyperflex_health_check_execution.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_health_check_execution_all_of.py b/intersight/model/hyperflex_health_check_execution_all_of.py index 79c1b8769f..24124b170f 100644 --- a/intersight/model/hyperflex_health_check_execution_all_of.py +++ b/intersight/model/hyperflex_health_check_execution_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_health_check_execution_list.py b/intersight/model/hyperflex_health_check_execution_list.py index ab69f542d2..adc7455197 100644 --- a/intersight/model/hyperflex_health_check_execution_list.py +++ b/intersight/model/hyperflex_health_check_execution_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_health_check_execution_list_all_of.py b/intersight/model/hyperflex_health_check_execution_list_all_of.py index 47e0ccd64d..d657a60b46 100644 --- a/intersight/model/hyperflex_health_check_execution_list_all_of.py +++ b/intersight/model/hyperflex_health_check_execution_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_health_check_execution_response.py b/intersight/model/hyperflex_health_check_execution_response.py index 98e02a31df..902d4e8d63 100644 --- a/intersight/model/hyperflex_health_check_execution_response.py +++ b/intersight/model/hyperflex_health_check_execution_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_health_check_execution_snapshot.py b/intersight/model/hyperflex_health_check_execution_snapshot.py index 8670d70e81..f1a02207f8 100644 --- a/intersight/model/hyperflex_health_check_execution_snapshot.py +++ b/intersight/model/hyperflex_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_health_check_execution_snapshot_all_of.py b/intersight/model/hyperflex_health_check_execution_snapshot_all_of.py index 8b26a0583b..32d66b1c32 100644 --- a/intersight/model/hyperflex_health_check_execution_snapshot_all_of.py +++ b/intersight/model/hyperflex_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_health_check_execution_snapshot_list.py b/intersight/model/hyperflex_health_check_execution_snapshot_list.py index c3233ad2e5..7bde02d2b5 100644 --- a/intersight/model/hyperflex_health_check_execution_snapshot_list.py +++ b/intersight/model/hyperflex_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_health_check_execution_snapshot_list_all_of.py b/intersight/model/hyperflex_health_check_execution_snapshot_list_all_of.py index a72f40a294..87cf180129 100644 --- a/intersight/model/hyperflex_health_check_execution_snapshot_list_all_of.py +++ b/intersight/model/hyperflex_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_health_check_execution_snapshot_response.py b/intersight/model/hyperflex_health_check_execution_snapshot_response.py index eb4f3c0a9e..03b18611ba 100644 --- a/intersight/model/hyperflex_health_check_execution_snapshot_response.py +++ b/intersight/model/hyperflex_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_health_check_package_checksum.py b/intersight/model/hyperflex_health_check_package_checksum.py index 0de0d8c2f3..d970c735f5 100644 --- a/intersight/model/hyperflex_health_check_package_checksum.py +++ b/intersight/model/hyperflex_health_check_package_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/hyperflex_health_check_package_checksum_all_of.py b/intersight/model/hyperflex_health_check_package_checksum_all_of.py index 2ab93cd2bb..c444af7f3c 100644 --- a/intersight/model/hyperflex_health_check_package_checksum_all_of.py +++ b/intersight/model/hyperflex_health_check_package_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/hyperflex_health_check_package_checksum_list.py b/intersight/model/hyperflex_health_check_package_checksum_list.py index 6895aaa13d..0694bd8711 100644 --- a/intersight/model/hyperflex_health_check_package_checksum_list.py +++ b/intersight/model/hyperflex_health_check_package_checksum_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_health_check_package_checksum_list_all_of.py b/intersight/model/hyperflex_health_check_package_checksum_list_all_of.py index 535a201312..7dafe72582 100644 --- a/intersight/model/hyperflex_health_check_package_checksum_list_all_of.py +++ b/intersight/model/hyperflex_health_check_package_checksum_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_health_check_package_checksum_response.py b/intersight/model/hyperflex_health_check_package_checksum_response.py index 41765721b8..bf61f3a6e4 100644 --- a/intersight/model/hyperflex_health_check_package_checksum_response.py +++ b/intersight/model/hyperflex_health_check_package_checksum_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_health_check_script_info.py b/intersight/model/hyperflex_health_check_script_info.py index 56b92548ec..6f5378ab15 100644 --- a/intersight/model/hyperflex_health_check_script_info.py +++ b/intersight/model/hyperflex_health_check_script_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_health_check_script_info_all_of.py b/intersight/model/hyperflex_health_check_script_info_all_of.py index 80ffcb80be..8a19562854 100644 --- a/intersight/model/hyperflex_health_check_script_info_all_of.py +++ b/intersight/model/hyperflex_health_check_script_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_health_list.py b/intersight/model/hyperflex_health_list.py index 521356ee15..e5ae4f26c3 100644 --- a/intersight/model/hyperflex_health_list.py +++ b/intersight/model/hyperflex_health_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_health_list_all_of.py b/intersight/model/hyperflex_health_list_all_of.py index 693fac36c2..52a06a61da 100644 --- a/intersight/model/hyperflex_health_list_all_of.py +++ b/intersight/model/hyperflex_health_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_health_relationship.py b/intersight/model/hyperflex_health_relationship.py index 9a38647771..0a18278a60 100644 --- a/intersight/model/hyperflex_health_relationship.py +++ b/intersight/model/hyperflex_health_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 """ @@ -102,6 +102,8 @@ class HyperflexHealthRelationship(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", @@ -118,6 +120,7 @@ class HyperflexHealthRelationship(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", @@ -166,9 +169,12 @@ class HyperflexHealthRelationship(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", @@ -232,10 +238,6 @@ class HyperflexHealthRelationship(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", @@ -244,6 +246,7 @@ class HyperflexHealthRelationship(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", @@ -492,6 +495,7 @@ class HyperflexHealthRelationship(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", @@ -661,6 +665,11 @@ class HyperflexHealthRelationship(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", @@ -776,6 +785,7 @@ class HyperflexHealthRelationship(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", @@ -807,6 +817,7 @@ class HyperflexHealthRelationship(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", @@ -839,12 +850,14 @@ class HyperflexHealthRelationship(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_health_response.py b/intersight/model/hyperflex_health_response.py index 186ce3b229..e5c9a30208 100644 --- a/intersight/model/hyperflex_health_response.py +++ b/intersight/model/hyperflex_health_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_hx_host_mount_status_dt.py b/intersight/model/hyperflex_hx_host_mount_status_dt.py index 5633d5f536..a01360cf19 100644 --- a/intersight/model/hyperflex_hx_host_mount_status_dt.py +++ b/intersight/model/hyperflex_hx_host_mount_status_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_host_mount_status_dt_all_of.py b/intersight/model/hyperflex_hx_host_mount_status_dt_all_of.py index d2a07cc869..f3164311c7 100644 --- a/intersight/model/hyperflex_hx_host_mount_status_dt_all_of.py +++ b/intersight/model/hyperflex_hx_host_mount_status_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_license_authorization_details_dt.py b/intersight/model/hyperflex_hx_license_authorization_details_dt.py index 9c84380aba..1f5d16a649 100644 --- a/intersight/model/hyperflex_hx_license_authorization_details_dt.py +++ b/intersight/model/hyperflex_hx_license_authorization_details_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_license_authorization_details_dt_all_of.py b/intersight/model/hyperflex_hx_license_authorization_details_dt_all_of.py index e9a309d226..b22ea69fc0 100644 --- a/intersight/model/hyperflex_hx_license_authorization_details_dt_all_of.py +++ b/intersight/model/hyperflex_hx_license_authorization_details_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_link_dt.py b/intersight/model/hyperflex_hx_link_dt.py index 87b806c320..1c2e46e8e9 100644 --- a/intersight/model/hyperflex_hx_link_dt.py +++ b/intersight/model/hyperflex_hx_link_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_link_dt_all_of.py b/intersight/model/hyperflex_hx_link_dt_all_of.py index 0362374a22..6d9c808b78 100644 --- a/intersight/model/hyperflex_hx_link_dt_all_of.py +++ b/intersight/model/hyperflex_hx_link_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_network_address_dt.py b/intersight/model/hyperflex_hx_network_address_dt.py index 0f5964e52f..a7d8f7c1b5 100644 --- a/intersight/model/hyperflex_hx_network_address_dt.py +++ b/intersight/model/hyperflex_hx_network_address_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_network_address_dt_all_of.py b/intersight/model/hyperflex_hx_network_address_dt_all_of.py index 8ed36e1113..11f8237fa6 100644 --- a/intersight/model/hyperflex_hx_network_address_dt_all_of.py +++ b/intersight/model/hyperflex_hx_network_address_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_platform_datastore_config_dt.py b/intersight/model/hyperflex_hx_platform_datastore_config_dt.py index f08006fcf8..8616955e3f 100644 --- a/intersight/model/hyperflex_hx_platform_datastore_config_dt.py +++ b/intersight/model/hyperflex_hx_platform_datastore_config_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_platform_datastore_config_dt_all_of.py b/intersight/model/hyperflex_hx_platform_datastore_config_dt_all_of.py index d72a069eee..3cd4efe2c6 100644 --- a/intersight/model/hyperflex_hx_platform_datastore_config_dt_all_of.py +++ b/intersight/model/hyperflex_hx_platform_datastore_config_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_registration_details_dt.py b/intersight/model/hyperflex_hx_registration_details_dt.py index 7a1d3135ba..f8dbeb1604 100644 --- a/intersight/model/hyperflex_hx_registration_details_dt.py +++ b/intersight/model/hyperflex_hx_registration_details_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_registration_details_dt_all_of.py b/intersight/model/hyperflex_hx_registration_details_dt_all_of.py index b81801a57a..75bf73817d 100644 --- a/intersight/model/hyperflex_hx_registration_details_dt_all_of.py +++ b/intersight/model/hyperflex_hx_registration_details_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_resiliency_info_dt.py b/intersight/model/hyperflex_hx_resiliency_info_dt.py index c07ec0b19c..17978c87bc 100644 --- a/intersight/model/hyperflex_hx_resiliency_info_dt.py +++ b/intersight/model/hyperflex_hx_resiliency_info_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_resiliency_info_dt_all_of.py b/intersight/model/hyperflex_hx_resiliency_info_dt_all_of.py index 03830ea7ef..5ff0a924f5 100644 --- a/intersight/model/hyperflex_hx_resiliency_info_dt_all_of.py +++ b/intersight/model/hyperflex_hx_resiliency_info_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_site_dt.py b/intersight/model/hyperflex_hx_site_dt.py index 2ea632e358..8c64d6a1a8 100644 --- a/intersight/model/hyperflex_hx_site_dt.py +++ b/intersight/model/hyperflex_hx_site_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_site_dt_all_of.py b/intersight/model/hyperflex_hx_site_dt_all_of.py index 8dbbc8fad1..1ca3bb0177 100644 --- a/intersight/model/hyperflex_hx_site_dt_all_of.py +++ b/intersight/model/hyperflex_hx_site_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_uu_id_dt.py b/intersight/model/hyperflex_hx_uu_id_dt.py index 7b65799c63..ba91ab8f4d 100644 --- a/intersight/model/hyperflex_hx_uu_id_dt.py +++ b/intersight/model/hyperflex_hx_uu_id_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_uu_id_dt_all_of.py b/intersight/model/hyperflex_hx_uu_id_dt_all_of.py index 457d938608..8e00509aec 100644 --- a/intersight/model/hyperflex_hx_uu_id_dt_all_of.py +++ b/intersight/model/hyperflex_hx_uu_id_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_zone_info_dt.py b/intersight/model/hyperflex_hx_zone_info_dt.py index 462e56d274..3e8b5507bf 100644 --- a/intersight/model/hyperflex_hx_zone_info_dt.py +++ b/intersight/model/hyperflex_hx_zone_info_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_zone_info_dt_all_of.py b/intersight/model/hyperflex_hx_zone_info_dt_all_of.py index 021bfa7f90..5b0ffb123b 100644 --- a/intersight/model/hyperflex_hx_zone_info_dt_all_of.py +++ b/intersight/model/hyperflex_hx_zone_info_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_zone_resiliency_info_dt.py b/intersight/model/hyperflex_hx_zone_resiliency_info_dt.py index 2da8835a59..de16dee499 100644 --- a/intersight/model/hyperflex_hx_zone_resiliency_info_dt.py +++ b/intersight/model/hyperflex_hx_zone_resiliency_info_dt.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hx_zone_resiliency_info_dt_all_of.py b/intersight/model/hyperflex_hx_zone_resiliency_info_dt_all_of.py index f5a72015e3..a887d03f36 100644 --- a/intersight/model/hyperflex_hx_zone_resiliency_info_dt_all_of.py +++ b/intersight/model/hyperflex_hx_zone_resiliency_info_dt_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxap_cluster.py b/intersight/model/hyperflex_hxap_cluster.py index bba4b549c0..78771a4ee9 100644 --- a/intersight/model/hyperflex_hxap_cluster.py +++ b/intersight/model/hyperflex_hxap_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_hxap_cluster_all_of.py b/intersight/model/hyperflex_hxap_cluster_all_of.py index d0bbe32ed1..d29c3bf8f4 100644 --- a/intersight/model/hyperflex_hxap_cluster_all_of.py +++ b/intersight/model/hyperflex_hxap_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_hxap_cluster_list.py b/intersight/model/hyperflex_hxap_cluster_list.py index 958b039336..983d44e8e1 100644 --- a/intersight/model/hyperflex_hxap_cluster_list.py +++ b/intersight/model/hyperflex_hxap_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_hxap_cluster_list_all_of.py b/intersight/model/hyperflex_hxap_cluster_list_all_of.py index 24c5367eff..0f575cfde8 100644 --- a/intersight/model/hyperflex_hxap_cluster_list_all_of.py +++ b/intersight/model/hyperflex_hxap_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_hxap_cluster_relationship.py b/intersight/model/hyperflex_hxap_cluster_relationship.py index c2f3285b5c..f10dc1a887 100644 --- a/intersight/model/hyperflex_hxap_cluster_relationship.py +++ b/intersight/model/hyperflex_hxap_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 """ @@ -118,6 +118,8 @@ class HyperflexHxapClusterRelationship(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", @@ -134,6 +136,7 @@ class HyperflexHxapClusterRelationship(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", @@ -182,9 +185,12 @@ class HyperflexHxapClusterRelationship(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", @@ -248,10 +254,6 @@ class HyperflexHxapClusterRelationship(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", @@ -260,6 +262,7 @@ class HyperflexHxapClusterRelationship(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", @@ -508,6 +511,7 @@ class HyperflexHxapClusterRelationship(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", @@ -677,6 +681,11 @@ class HyperflexHxapClusterRelationship(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", @@ -792,6 +801,7 @@ class HyperflexHxapClusterRelationship(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", @@ -823,6 +833,7 @@ class HyperflexHxapClusterRelationship(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", @@ -855,12 +866,14 @@ class HyperflexHxapClusterRelationship(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_hxap_cluster_response.py b/intersight/model/hyperflex_hxap_cluster_response.py index 98fd8dc48a..add09eb089 100644 --- a/intersight/model/hyperflex_hxap_cluster_response.py +++ b/intersight/model/hyperflex_hxap_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_hxap_datacenter.py b/intersight/model/hyperflex_hxap_datacenter.py index 10887dde75..872d01c714 100644 --- a/intersight/model/hyperflex_hxap_datacenter.py +++ b/intersight/model/hyperflex_hxap_datacenter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxap_datacenter_all_of.py b/intersight/model/hyperflex_hxap_datacenter_all_of.py index 2dcf773ac7..2b85e54086 100644 --- a/intersight/model/hyperflex_hxap_datacenter_all_of.py +++ b/intersight/model/hyperflex_hxap_datacenter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxap_datacenter_list.py b/intersight/model/hyperflex_hxap_datacenter_list.py index 44f1b229eb..0d4006e98a 100644 --- a/intersight/model/hyperflex_hxap_datacenter_list.py +++ b/intersight/model/hyperflex_hxap_datacenter_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_hxap_datacenter_list_all_of.py b/intersight/model/hyperflex_hxap_datacenter_list_all_of.py index 8b4cf2cb69..92953996e0 100644 --- a/intersight/model/hyperflex_hxap_datacenter_list_all_of.py +++ b/intersight/model/hyperflex_hxap_datacenter_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_hxap_datacenter_response.py b/intersight/model/hyperflex_hxap_datacenter_response.py index 46c8946d43..3f61567014 100644 --- a/intersight/model/hyperflex_hxap_datacenter_response.py +++ b/intersight/model/hyperflex_hxap_datacenter_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_hxap_dv_uplink.py b/intersight/model/hyperflex_hxap_dv_uplink.py index bb7e4903f8..4ae1550770 100644 --- a/intersight/model/hyperflex_hxap_dv_uplink.py +++ b/intersight/model/hyperflex_hxap_dv_uplink.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxap_dv_uplink_all_of.py b/intersight/model/hyperflex_hxap_dv_uplink_all_of.py index 922541b89e..811aa3cfd3 100644 --- a/intersight/model/hyperflex_hxap_dv_uplink_all_of.py +++ b/intersight/model/hyperflex_hxap_dv_uplink_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxap_dv_uplink_list.py b/intersight/model/hyperflex_hxap_dv_uplink_list.py index ac4b35add2..1e1dfbd55a 100644 --- a/intersight/model/hyperflex_hxap_dv_uplink_list.py +++ b/intersight/model/hyperflex_hxap_dv_uplink_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_hxap_dv_uplink_list_all_of.py b/intersight/model/hyperflex_hxap_dv_uplink_list_all_of.py index c87d957afa..96640d8dee 100644 --- a/intersight/model/hyperflex_hxap_dv_uplink_list_all_of.py +++ b/intersight/model/hyperflex_hxap_dv_uplink_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_hxap_dv_uplink_relationship.py b/intersight/model/hyperflex_hxap_dv_uplink_relationship.py index cccbf9fb23..c06f50529b 100644 --- a/intersight/model/hyperflex_hxap_dv_uplink_relationship.py +++ b/intersight/model/hyperflex_hxap_dv_uplink_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 HyperflexHxapDvUplinkRelationship(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 HyperflexHxapDvUplinkRelationship(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 HyperflexHxapDvUplinkRelationship(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 HyperflexHxapDvUplinkRelationship(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 HyperflexHxapDvUplinkRelationship(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 HyperflexHxapDvUplinkRelationship(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 HyperflexHxapDvUplinkRelationship(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 HyperflexHxapDvUplinkRelationship(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 HyperflexHxapDvUplinkRelationship(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 HyperflexHxapDvUplinkRelationship(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_hxap_dv_uplink_response.py b/intersight/model/hyperflex_hxap_dv_uplink_response.py index 9fef7b609e..60bf0880d4 100644 --- a/intersight/model/hyperflex_hxap_dv_uplink_response.py +++ b/intersight/model/hyperflex_hxap_dv_uplink_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_hxap_dvswitch.py b/intersight/model/hyperflex_hxap_dvswitch.py index 135c0a7045..02561b53d8 100644 --- a/intersight/model/hyperflex_hxap_dvswitch.py +++ b/intersight/model/hyperflex_hxap_dvswitch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxap_dvswitch_all_of.py b/intersight/model/hyperflex_hxap_dvswitch_all_of.py index 67cb23d576..3741a8855c 100644 --- a/intersight/model/hyperflex_hxap_dvswitch_all_of.py +++ b/intersight/model/hyperflex_hxap_dvswitch_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxap_dvswitch_list.py b/intersight/model/hyperflex_hxap_dvswitch_list.py index e176b93a79..76c725d86c 100644 --- a/intersight/model/hyperflex_hxap_dvswitch_list.py +++ b/intersight/model/hyperflex_hxap_dvswitch_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_hxap_dvswitch_list_all_of.py b/intersight/model/hyperflex_hxap_dvswitch_list_all_of.py index e2238a7a26..2a382ad9c9 100644 --- a/intersight/model/hyperflex_hxap_dvswitch_list_all_of.py +++ b/intersight/model/hyperflex_hxap_dvswitch_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_hxap_dvswitch_relationship.py b/intersight/model/hyperflex_hxap_dvswitch_relationship.py index 9df5528801..a09e71d47d 100644 --- a/intersight/model/hyperflex_hxap_dvswitch_relationship.py +++ b/intersight/model/hyperflex_hxap_dvswitch_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 HyperflexHxapDvswitchRelationship(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 HyperflexHxapDvswitchRelationship(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 HyperflexHxapDvswitchRelationship(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 HyperflexHxapDvswitchRelationship(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 HyperflexHxapDvswitchRelationship(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 HyperflexHxapDvswitchRelationship(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 HyperflexHxapDvswitchRelationship(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 HyperflexHxapDvswitchRelationship(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 HyperflexHxapDvswitchRelationship(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 HyperflexHxapDvswitchRelationship(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_hxap_dvswitch_response.py b/intersight/model/hyperflex_hxap_dvswitch_response.py index a22a44a639..9f5a9a80f3 100644 --- a/intersight/model/hyperflex_hxap_dvswitch_response.py +++ b/intersight/model/hyperflex_hxap_dvswitch_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_hxap_host.py b/intersight/model/hyperflex_hxap_host.py index 22339ee78f..e06366c912 100644 --- a/intersight/model/hyperflex_hxap_host.py +++ b/intersight/model/hyperflex_hxap_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 """ @@ -106,6 +106,17 @@ class HyperflexHxapHost(ModelComposed): 'REBOOTING': "Rebooting", 'EMPTY': "", }, + ('storage_vm_power_state',): { + 'UNKNOWN': "Unknown", + 'POWERINGON': "PoweringOn", + 'POWEREDON': "PoweredOn", + 'POWERINGOFF': "PoweringOff", + 'POWEREDOFF': "PoweredOff", + 'STANDBY': "StandBy", + 'PAUSED': "Paused", + 'REBOOTING': "Rebooting", + 'EMPTY': "", + }, ('hypervisor_type',): { 'ESXI': "ESXi", 'HYPERFLEXAP': "HyperFlexAp", @@ -163,6 +174,7 @@ def openapi_types(): 'management_ip_address': (str,), # noqa: E501 'master_role': (bool,), # noqa: E501 'memory_allocation': (VirtualizationMemoryAllocation,), # noqa: E501 + 'storage_vm_power_state': (str,), # noqa: E501 'version': (str,), # noqa: E501 'cluster': (HyperflexHxapClusterRelationship,), # noqa: E501 'cluster_member': (AssetClusterMemberRelationship,), # noqa: E501 @@ -219,6 +231,7 @@ def discriminator(): 'management_ip_address': 'ManagementIpAddress', # noqa: E501 'master_role': 'MasterRole', # noqa: E501 'memory_allocation': 'MemoryAllocation', # noqa: E501 + 'storage_vm_power_state': 'StorageVmPowerState', # noqa: E501 'version': 'Version', # noqa: E501 'cluster': 'Cluster', # noqa: E501 'cluster_member': 'ClusterMember', # noqa: E501 @@ -315,6 +328,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 management_ip_address (str): Management IP Address of the Host.. [optional] # noqa: E501 master_role (bool): Is the role of this host is master in the cluster? true or false.. [optional] # noqa: E501 memory_allocation (VirtualizationMemoryAllocation): [optional] # noqa: E501 + storage_vm_power_state (str): Is the Storage Controller VM on the host Powered-up or Powered-down. * `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 version (str): Product version of the Host.. [optional] # noqa: E501 cluster (HyperflexHxapClusterRelationship): [optional] # noqa: E501 cluster_member (AssetClusterMemberRelationship): [optional] # noqa: E501 diff --git a/intersight/model/hyperflex_hxap_host_all_of.py b/intersight/model/hyperflex_hxap_host_all_of.py index c5b4898a9f..6b4760f95e 100644 --- a/intersight/model/hyperflex_hxap_host_all_of.py +++ b/intersight/model/hyperflex_hxap_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 """ @@ -82,6 +82,17 @@ class HyperflexHxapHostAllOf(ModelNormal): 'REBOOTING': "Rebooting", 'EMPTY': "", }, + ('storage_vm_power_state',): { + 'UNKNOWN': "Unknown", + 'POWERINGON': "PoweringOn", + 'POWEREDON': "PoweredOn", + 'POWERINGOFF': "PoweringOff", + 'POWEREDOFF': "PoweredOff", + 'STANDBY': "StandBy", + 'PAUSED': "Paused", + 'REBOOTING': "Rebooting", + 'EMPTY': "", + }, } validations = { @@ -115,6 +126,7 @@ def openapi_types(): 'management_ip_address': (str,), # noqa: E501 'master_role': (bool,), # noqa: E501 'memory_allocation': (VirtualizationMemoryAllocation,), # noqa: E501 + 'storage_vm_power_state': (str,), # noqa: E501 'version': (str,), # noqa: E501 'cluster': (HyperflexHxapClusterRelationship,), # noqa: E501 'cluster_member': (AssetClusterMemberRelationship,), # noqa: E501 @@ -139,6 +151,7 @@ def discriminator(): 'management_ip_address': 'ManagementIpAddress', # noqa: E501 'master_role': 'MasterRole', # noqa: E501 'memory_allocation': 'MemoryAllocation', # noqa: E501 + 'storage_vm_power_state': 'StorageVmPowerState', # noqa: E501 'version': 'Version', # noqa: E501 'cluster': 'Cluster', # noqa: E501 'cluster_member': 'ClusterMember', # noqa: E501 @@ -205,6 +218,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 management_ip_address (str): Management IP Address of the Host.. [optional] # noqa: E501 master_role (bool): Is the role of this host is master in the cluster? true or false.. [optional] # noqa: E501 memory_allocation (VirtualizationMemoryAllocation): [optional] # noqa: E501 + storage_vm_power_state (str): Is the Storage Controller VM on the host Powered-up or Powered-down. * `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 version (str): Product version of the Host.. [optional] # noqa: E501 cluster (HyperflexHxapClusterRelationship): [optional] # noqa: E501 cluster_member (AssetClusterMemberRelationship): [optional] # noqa: E501 diff --git a/intersight/model/hyperflex_hxap_host_interface.py b/intersight/model/hyperflex_hxap_host_interface.py index dbff3cf461..5387d2d038 100644 --- a/intersight/model/hyperflex_hxap_host_interface.py +++ b/intersight/model/hyperflex_hxap_host_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/hyperflex_hxap_host_interface_all_of.py b/intersight/model/hyperflex_hxap_host_interface_all_of.py index 8504a2b59e..f5e5aa55eb 100644 --- a/intersight/model/hyperflex_hxap_host_interface_all_of.py +++ b/intersight/model/hyperflex_hxap_host_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/hyperflex_hxap_host_interface_list.py b/intersight/model/hyperflex_hxap_host_interface_list.py index ef92014fd5..62fb77c17f 100644 --- a/intersight/model/hyperflex_hxap_host_interface_list.py +++ b/intersight/model/hyperflex_hxap_host_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/hyperflex_hxap_host_interface_list_all_of.py b/intersight/model/hyperflex_hxap_host_interface_list_all_of.py index 7d0333ae93..c33bdb4c80 100644 --- a/intersight/model/hyperflex_hxap_host_interface_list_all_of.py +++ b/intersight/model/hyperflex_hxap_host_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/hyperflex_hxap_host_interface_relationship.py b/intersight/model/hyperflex_hxap_host_interface_relationship.py index ba2ca55647..ac8166abd4 100644 --- a/intersight/model/hyperflex_hxap_host_interface_relationship.py +++ b/intersight/model/hyperflex_hxap_host_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 """ @@ -88,6 +88,8 @@ class HyperflexHxapHostInterfaceRelationship(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 HyperflexHxapHostInterfaceRelationship(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 HyperflexHxapHostInterfaceRelationship(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 HyperflexHxapHostInterfaceRelationship(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 HyperflexHxapHostInterfaceRelationship(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 HyperflexHxapHostInterfaceRelationship(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 HyperflexHxapHostInterfaceRelationship(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 HyperflexHxapHostInterfaceRelationship(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 HyperflexHxapHostInterfaceRelationship(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 HyperflexHxapHostInterfaceRelationship(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_hxap_host_interface_response.py b/intersight/model/hyperflex_hxap_host_interface_response.py index cc8e90af79..3889e2064b 100644 --- a/intersight/model/hyperflex_hxap_host_interface_response.py +++ b/intersight/model/hyperflex_hxap_host_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/hyperflex_hxap_host_list.py b/intersight/model/hyperflex_hxap_host_list.py index 6287071334..67373ab86a 100644 --- a/intersight/model/hyperflex_hxap_host_list.py +++ b/intersight/model/hyperflex_hxap_host_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_hxap_host_list_all_of.py b/intersight/model/hyperflex_hxap_host_list_all_of.py index 3d14faeb5f..114ca84036 100644 --- a/intersight/model/hyperflex_hxap_host_list_all_of.py +++ b/intersight/model/hyperflex_hxap_host_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_hxap_host_relationship.py b/intersight/model/hyperflex_hxap_host_relationship.py index 9ef979bc8d..bf544c49ce 100644 --- a/intersight/model/hyperflex_hxap_host_relationship.py +++ b/intersight/model/hyperflex_hxap_host_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 """ @@ -115,8 +115,21 @@ class HyperflexHxapHostRelationship(ModelComposed): 'REBOOTING': "Rebooting", 'EMPTY': "", }, + ('storage_vm_power_state',): { + 'UNKNOWN': "Unknown", + 'POWERINGON': "PoweringOn", + 'POWEREDON': "PoweredOn", + 'POWERINGOFF': "PoweringOff", + 'POWEREDOFF': "PoweredOff", + 'STANDBY': "StandBy", + 'PAUSED': "Paused", + 'REBOOTING': "Rebooting", + 'EMPTY': "", + }, ('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", @@ -133,6 +146,7 @@ class HyperflexHxapHostRelationship(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", @@ -181,9 +195,12 @@ class HyperflexHxapHostRelationship(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", @@ -247,10 +264,6 @@ class HyperflexHxapHostRelationship(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", @@ -259,6 +272,7 @@ class HyperflexHxapHostRelationship(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", @@ -507,6 +521,7 @@ class HyperflexHxapHostRelationship(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", @@ -676,6 +691,11 @@ class HyperflexHxapHostRelationship(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", @@ -791,6 +811,7 @@ class HyperflexHxapHostRelationship(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", @@ -822,6 +843,7 @@ class HyperflexHxapHostRelationship(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", @@ -854,12 +876,14 @@ class HyperflexHxapHostRelationship(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", }, } @@ -936,6 +960,7 @@ def openapi_types(): 'management_ip_address': (str,), # noqa: E501 'master_role': (bool,), # noqa: E501 'memory_allocation': (VirtualizationMemoryAllocation,), # noqa: E501 + 'storage_vm_power_state': (str,), # noqa: E501 'version': (str,), # noqa: E501 'cluster': (HyperflexHxapClusterRelationship,), # noqa: E501 'cluster_member': (AssetClusterMemberRelationship,), # noqa: E501 @@ -997,6 +1022,7 @@ def discriminator(): 'management_ip_address': 'ManagementIpAddress', # noqa: E501 'master_role': 'MasterRole', # noqa: E501 'memory_allocation': 'MemoryAllocation', # noqa: E501 + 'storage_vm_power_state': 'StorageVmPowerState', # noqa: E501 'version': 'Version', # noqa: E501 'cluster': 'Cluster', # noqa: E501 'cluster_member': 'ClusterMember', # noqa: E501 @@ -1095,6 +1121,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 management_ip_address (str): Management IP Address of the Host.. [optional] # noqa: E501 master_role (bool): Is the role of this host is master in the cluster? true or false.. [optional] # noqa: E501 memory_allocation (VirtualizationMemoryAllocation): [optional] # noqa: E501 + storage_vm_power_state (str): Is the Storage Controller VM on the host Powered-up or Powered-down. * `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 version (str): Product version of the Host.. [optional] # noqa: E501 cluster (HyperflexHxapClusterRelationship): [optional] # noqa: E501 cluster_member (AssetClusterMemberRelationship): [optional] # noqa: E501 diff --git a/intersight/model/hyperflex_hxap_host_response.py b/intersight/model/hyperflex_hxap_host_response.py index d837f25417..9dd4031d5e 100644 --- a/intersight/model/hyperflex_hxap_host_response.py +++ b/intersight/model/hyperflex_hxap_host_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_hxap_host_vswitch.py b/intersight/model/hyperflex_hxap_host_vswitch.py index 0984e3996e..dbad9e72ae 100644 --- a/intersight/model/hyperflex_hxap_host_vswitch.py +++ b/intersight/model/hyperflex_hxap_host_vswitch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxap_host_vswitch_all_of.py b/intersight/model/hyperflex_hxap_host_vswitch_all_of.py index db33d33cf6..e6370f31de 100644 --- a/intersight/model/hyperflex_hxap_host_vswitch_all_of.py +++ b/intersight/model/hyperflex_hxap_host_vswitch_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxap_host_vswitch_list.py b/intersight/model/hyperflex_hxap_host_vswitch_list.py index 9551ab5d9c..2aaac5678e 100644 --- a/intersight/model/hyperflex_hxap_host_vswitch_list.py +++ b/intersight/model/hyperflex_hxap_host_vswitch_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_hxap_host_vswitch_list_all_of.py b/intersight/model/hyperflex_hxap_host_vswitch_list_all_of.py index 4460e2aa35..5089d08292 100644 --- a/intersight/model/hyperflex_hxap_host_vswitch_list_all_of.py +++ b/intersight/model/hyperflex_hxap_host_vswitch_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_hxap_host_vswitch_relationship.py b/intersight/model/hyperflex_hxap_host_vswitch_relationship.py index b49b479c82..274b4da213 100644 --- a/intersight/model/hyperflex_hxap_host_vswitch_relationship.py +++ b/intersight/model/hyperflex_hxap_host_vswitch_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 HyperflexHxapHostVswitchRelationship(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 HyperflexHxapHostVswitchRelationship(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 HyperflexHxapHostVswitchRelationship(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 HyperflexHxapHostVswitchRelationship(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 HyperflexHxapHostVswitchRelationship(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 HyperflexHxapHostVswitchRelationship(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 HyperflexHxapHostVswitchRelationship(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 HyperflexHxapHostVswitchRelationship(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 HyperflexHxapHostVswitchRelationship(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 HyperflexHxapHostVswitchRelationship(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_hxap_host_vswitch_response.py b/intersight/model/hyperflex_hxap_host_vswitch_response.py index 9d213fc839..eec04ad831 100644 --- a/intersight/model/hyperflex_hxap_host_vswitch_response.py +++ b/intersight/model/hyperflex_hxap_host_vswitch_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_hxap_network.py b/intersight/model/hyperflex_hxap_network.py index 893e3c70a9..c5d2b28aed 100644 --- a/intersight/model/hyperflex_hxap_network.py +++ b/intersight/model/hyperflex_hxap_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/hyperflex_hxap_network_all_of.py b/intersight/model/hyperflex_hxap_network_all_of.py index 7b1bf37db3..4a9f737b93 100644 --- a/intersight/model/hyperflex_hxap_network_all_of.py +++ b/intersight/model/hyperflex_hxap_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/hyperflex_hxap_network_list.py b/intersight/model/hyperflex_hxap_network_list.py index ad41affa07..7cbfcf2276 100644 --- a/intersight/model/hyperflex_hxap_network_list.py +++ b/intersight/model/hyperflex_hxap_network_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_hxap_network_list_all_of.py b/intersight/model/hyperflex_hxap_network_list_all_of.py index 1633a630a6..d770c4c84a 100644 --- a/intersight/model/hyperflex_hxap_network_list_all_of.py +++ b/intersight/model/hyperflex_hxap_network_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_hxap_network_relationship.py b/intersight/model/hyperflex_hxap_network_relationship.py index 394f972706..a3cabc3bcc 100644 --- a/intersight/model/hyperflex_hxap_network_relationship.py +++ b/intersight/model/hyperflex_hxap_network_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 HyperflexHxapNetworkRelationship(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 HyperflexHxapNetworkRelationship(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 HyperflexHxapNetworkRelationship(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 HyperflexHxapNetworkRelationship(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 HyperflexHxapNetworkRelationship(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 HyperflexHxapNetworkRelationship(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 HyperflexHxapNetworkRelationship(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 HyperflexHxapNetworkRelationship(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 HyperflexHxapNetworkRelationship(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 HyperflexHxapNetworkRelationship(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_hxap_network_response.py b/intersight/model/hyperflex_hxap_network_response.py index 666a8ad4d1..a327222edf 100644 --- a/intersight/model/hyperflex_hxap_network_response.py +++ b/intersight/model/hyperflex_hxap_network_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_hxap_virtual_disk.py b/intersight/model/hyperflex_hxap_virtual_disk.py index 2187f877c5..85a40dc5b4 100644 --- a/intersight/model/hyperflex_hxap_virtual_disk.py +++ b/intersight/model/hyperflex_hxap_virtual_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/hyperflex_hxap_virtual_disk_all_of.py b/intersight/model/hyperflex_hxap_virtual_disk_all_of.py index e5713506a8..25f29e86ac 100644 --- a/intersight/model/hyperflex_hxap_virtual_disk_all_of.py +++ b/intersight/model/hyperflex_hxap_virtual_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/hyperflex_hxap_virtual_disk_list.py b/intersight/model/hyperflex_hxap_virtual_disk_list.py index 65e3f90a7c..ed25af3c57 100644 --- a/intersight/model/hyperflex_hxap_virtual_disk_list.py +++ b/intersight/model/hyperflex_hxap_virtual_disk_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_hxap_virtual_disk_list_all_of.py b/intersight/model/hyperflex_hxap_virtual_disk_list_all_of.py index c5c9b3c038..c0b6da2aea 100644 --- a/intersight/model/hyperflex_hxap_virtual_disk_list_all_of.py +++ b/intersight/model/hyperflex_hxap_virtual_disk_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_hxap_virtual_disk_relationship.py b/intersight/model/hyperflex_hxap_virtual_disk_relationship.py index 0a198c1b65..f59caa2380 100644 --- a/intersight/model/hyperflex_hxap_virtual_disk_relationship.py +++ b/intersight/model/hyperflex_hxap_virtual_disk_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 HyperflexHxapVirtualDiskRelationship(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 HyperflexHxapVirtualDiskRelationship(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 HyperflexHxapVirtualDiskRelationship(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 HyperflexHxapVirtualDiskRelationship(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 HyperflexHxapVirtualDiskRelationship(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 HyperflexHxapVirtualDiskRelationship(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 HyperflexHxapVirtualDiskRelationship(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 HyperflexHxapVirtualDiskRelationship(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 HyperflexHxapVirtualDiskRelationship(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 HyperflexHxapVirtualDiskRelationship(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_hxap_virtual_disk_response.py b/intersight/model/hyperflex_hxap_virtual_disk_response.py index 0e7a8b7c5e..2c2306574b 100644 --- a/intersight/model/hyperflex_hxap_virtual_disk_response.py +++ b/intersight/model/hyperflex_hxap_virtual_disk_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_hxap_virtual_machine.py b/intersight/model/hyperflex_hxap_virtual_machine.py index 90a98c5a2c..b30c01fb5f 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine.py +++ b/intersight/model/hyperflex_hxap_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 """ @@ -212,11 +212,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 @@ -265,11 +267,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 @@ -358,11 +362,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/hyperflex_hxap_virtual_machine_all_of.py b/intersight/model/hyperflex_hxap_virtual_machine_all_of.py index 9240b54578..c8e48759aa 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_all_of.py +++ b/intersight/model/hyperflex_hxap_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/hyperflex_hxap_virtual_machine_list.py b/intersight/model/hyperflex_hxap_virtual_machine_list.py index d28d04f05e..9f03548b56 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_list.py +++ b/intersight/model/hyperflex_hxap_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/hyperflex_hxap_virtual_machine_list_all_of.py b/intersight/model/hyperflex_hxap_virtual_machine_list_all_of.py index 5358b242e8..de4443a842 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_list_all_of.py +++ b/intersight/model/hyperflex_hxap_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/hyperflex_hxap_virtual_machine_network_interface.py b/intersight/model/hyperflex_hxap_virtual_machine_network_interface.py index d7bd12a9d6..365d8aea55 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_network_interface.py +++ b/intersight/model/hyperflex_hxap_virtual_machine_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/hyperflex_hxap_virtual_machine_network_interface_all_of.py b/intersight/model/hyperflex_hxap_virtual_machine_network_interface_all_of.py index 94a206ce03..54fd128300 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_network_interface_all_of.py +++ b/intersight/model/hyperflex_hxap_virtual_machine_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/hyperflex_hxap_virtual_machine_network_interface_list.py b/intersight/model/hyperflex_hxap_virtual_machine_network_interface_list.py index e900a03ac2..23f891a993 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_network_interface_list.py +++ b/intersight/model/hyperflex_hxap_virtual_machine_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/hyperflex_hxap_virtual_machine_network_interface_list_all_of.py b/intersight/model/hyperflex_hxap_virtual_machine_network_interface_list_all_of.py index a7996efd0e..0c2c87d878 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_network_interface_list_all_of.py +++ b/intersight/model/hyperflex_hxap_virtual_machine_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/hyperflex_hxap_virtual_machine_network_interface_response.py b/intersight/model/hyperflex_hxap_virtual_machine_network_interface_response.py index 823a65428c..411e09087d 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_network_interface_response.py +++ b/intersight/model/hyperflex_hxap_virtual_machine_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/hyperflex_hxap_virtual_machine_relationship.py b/intersight/model/hyperflex_hxap_virtual_machine_relationship.py index c1f5f470eb..db30c49563 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_relationship.py +++ b/intersight/model/hyperflex_hxap_virtual_machine_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 """ @@ -148,6 +148,8 @@ class HyperflexHxapVirtualMachineRelationship(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", @@ -164,6 +166,7 @@ class HyperflexHxapVirtualMachineRelationship(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", @@ -212,9 +215,12 @@ class HyperflexHxapVirtualMachineRelationship(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", @@ -278,10 +284,6 @@ class HyperflexHxapVirtualMachineRelationship(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", @@ -290,6 +292,7 @@ class HyperflexHxapVirtualMachineRelationship(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", @@ -538,6 +541,7 @@ class HyperflexHxapVirtualMachineRelationship(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", @@ -707,6 +711,11 @@ class HyperflexHxapVirtualMachineRelationship(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", @@ -822,6 +831,7 @@ class HyperflexHxapVirtualMachineRelationship(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", @@ -853,6 +863,7 @@ class HyperflexHxapVirtualMachineRelationship(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", @@ -885,12 +896,14 @@ class HyperflexHxapVirtualMachineRelationship(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", }, } @@ -944,11 +957,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 @@ -1002,11 +1017,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 @@ -1097,11 +1114,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/hyperflex_hxap_virtual_machine_response.py b/intersight/model/hyperflex_hxap_virtual_machine_response.py index 82070b1c20..d8993cfd4e 100644 --- a/intersight/model/hyperflex_hxap_virtual_machine_response.py +++ b/intersight/model/hyperflex_hxap_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/hyperflex_hxdp_version.py b/intersight/model/hyperflex_hxdp_version.py index 7fb985a121..1343db87ef 100644 --- a/intersight/model/hyperflex_hxdp_version.py +++ b/intersight/model/hyperflex_hxdp_version.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxdp_version_all_of.py b/intersight/model/hyperflex_hxdp_version_all_of.py index 568ac81570..4f1c4f9fd5 100644 --- a/intersight/model/hyperflex_hxdp_version_all_of.py +++ b/intersight/model/hyperflex_hxdp_version_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_hxdp_version_list.py b/intersight/model/hyperflex_hxdp_version_list.py index ebdbe89b82..bb1159ebd2 100644 --- a/intersight/model/hyperflex_hxdp_version_list.py +++ b/intersight/model/hyperflex_hxdp_version_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_hxdp_version_list_all_of.py b/intersight/model/hyperflex_hxdp_version_list_all_of.py index 062f6f9c10..da4743635a 100644 --- a/intersight/model/hyperflex_hxdp_version_list_all_of.py +++ b/intersight/model/hyperflex_hxdp_version_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_hxdp_version_relationship.py b/intersight/model/hyperflex_hxdp_version_relationship.py index b72b62f7c3..c18a5f5468 100644 --- a/intersight/model/hyperflex_hxdp_version_relationship.py +++ b/intersight/model/hyperflex_hxdp_version_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 HyperflexHxdpVersionRelationship(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 HyperflexHxdpVersionRelationship(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 HyperflexHxdpVersionRelationship(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 HyperflexHxdpVersionRelationship(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 HyperflexHxdpVersionRelationship(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 HyperflexHxdpVersionRelationship(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 HyperflexHxdpVersionRelationship(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 HyperflexHxdpVersionRelationship(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 HyperflexHxdpVersionRelationship(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 HyperflexHxdpVersionRelationship(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_hxdp_version_response.py b/intersight/model/hyperflex_hxdp_version_response.py index 9ecd2e5cb7..d90dc5c055 100644 --- a/intersight/model/hyperflex_hxdp_version_response.py +++ b/intersight/model/hyperflex_hxdp_version_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_ip_addr_range.py b/intersight/model/hyperflex_ip_addr_range.py index 70c56ecf98..c26e9ac726 100644 --- a/intersight/model/hyperflex_ip_addr_range.py +++ b/intersight/model/hyperflex_ip_addr_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/hyperflex_ip_addr_range_all_of.py b/intersight/model/hyperflex_ip_addr_range_all_of.py index 706bd5cc82..d5b97e282c 100644 --- a/intersight/model/hyperflex_ip_addr_range_all_of.py +++ b/intersight/model/hyperflex_ip_addr_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/hyperflex_license.py b/intersight/model/hyperflex_license.py index 74b292ea75..ba0cc6bed5 100644 --- a/intersight/model/hyperflex_license.py +++ b/intersight/model/hyperflex_license.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_license_all_of.py b/intersight/model/hyperflex_license_all_of.py index d51f879d28..0fade02e3a 100644 --- a/intersight/model/hyperflex_license_all_of.py +++ b/intersight/model/hyperflex_license_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_license_list.py b/intersight/model/hyperflex_license_list.py index 43bd0e6aa2..2b6a1c4201 100644 --- a/intersight/model/hyperflex_license_list.py +++ b/intersight/model/hyperflex_license_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_license_list_all_of.py b/intersight/model/hyperflex_license_list_all_of.py index f39de14e62..d41f28d55a 100644 --- a/intersight/model/hyperflex_license_list_all_of.py +++ b/intersight/model/hyperflex_license_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_license_relationship.py b/intersight/model/hyperflex_license_relationship.py index e23a2d9798..437470e255 100644 --- a/intersight/model/hyperflex_license_relationship.py +++ b/intersight/model/hyperflex_license_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 HyperflexLicenseRelationship(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 HyperflexLicenseRelationship(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 HyperflexLicenseRelationship(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 HyperflexLicenseRelationship(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 HyperflexLicenseRelationship(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 HyperflexLicenseRelationship(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 HyperflexLicenseRelationship(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 HyperflexLicenseRelationship(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 HyperflexLicenseRelationship(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 HyperflexLicenseRelationship(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_license_response.py b/intersight/model/hyperflex_license_response.py index efd11d5f6e..282aea929c 100644 --- a/intersight/model/hyperflex_license_response.py +++ b/intersight/model/hyperflex_license_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_local_credential_policy.py b/intersight/model/hyperflex_local_credential_policy.py index d514fed067..347bf8f9f9 100644 --- a/intersight/model/hyperflex_local_credential_policy.py +++ b/intersight/model/hyperflex_local_credential_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_local_credential_policy_all_of.py b/intersight/model/hyperflex_local_credential_policy_all_of.py index 98e70f204d..ea826c57c8 100644 --- a/intersight/model/hyperflex_local_credential_policy_all_of.py +++ b/intersight/model/hyperflex_local_credential_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_local_credential_policy_list.py b/intersight/model/hyperflex_local_credential_policy_list.py index 125350a917..31638a3f09 100644 --- a/intersight/model/hyperflex_local_credential_policy_list.py +++ b/intersight/model/hyperflex_local_credential_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_local_credential_policy_list_all_of.py b/intersight/model/hyperflex_local_credential_policy_list_all_of.py index e1742b4366..06bc210cca 100644 --- a/intersight/model/hyperflex_local_credential_policy_list_all_of.py +++ b/intersight/model/hyperflex_local_credential_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_local_credential_policy_relationship.py b/intersight/model/hyperflex_local_credential_policy_relationship.py index 27f36b4e5b..656670d3d0 100644 --- a/intersight/model/hyperflex_local_credential_policy_relationship.py +++ b/intersight/model/hyperflex_local_credential_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 HyperflexLocalCredentialPolicyRelationship(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 HyperflexLocalCredentialPolicyRelationship(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 HyperflexLocalCredentialPolicyRelationship(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 HyperflexLocalCredentialPolicyRelationship(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 HyperflexLocalCredentialPolicyRelationship(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 HyperflexLocalCredentialPolicyRelationship(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 HyperflexLocalCredentialPolicyRelationship(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 HyperflexLocalCredentialPolicyRelationship(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 HyperflexLocalCredentialPolicyRelationship(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 HyperflexLocalCredentialPolicyRelationship(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_local_credential_policy_response.py b/intersight/model/hyperflex_local_credential_policy_response.py index 61d73ad0ac..db6ed873f6 100644 --- a/intersight/model/hyperflex_local_credential_policy_response.py +++ b/intersight/model/hyperflex_local_credential_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_logical_availability_zone.py b/intersight/model/hyperflex_logical_availability_zone.py index f21e53d179..fa75bb4875 100644 --- a/intersight/model/hyperflex_logical_availability_zone.py +++ b/intersight/model/hyperflex_logical_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/hyperflex_logical_availability_zone_all_of.py b/intersight/model/hyperflex_logical_availability_zone_all_of.py index 9fabdcd2d9..d23dda8e5c 100644 --- a/intersight/model/hyperflex_logical_availability_zone_all_of.py +++ b/intersight/model/hyperflex_logical_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/hyperflex_mac_addr_prefix_range.py b/intersight/model/hyperflex_mac_addr_prefix_range.py index c59d2d2ea6..450622536c 100644 --- a/intersight/model/hyperflex_mac_addr_prefix_range.py +++ b/intersight/model/hyperflex_mac_addr_prefix_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/hyperflex_mac_addr_prefix_range_all_of.py b/intersight/model/hyperflex_mac_addr_prefix_range_all_of.py index 16b29ef51d..3e7b565957 100644 --- a/intersight/model/hyperflex_mac_addr_prefix_range_all_of.py +++ b/intersight/model/hyperflex_mac_addr_prefix_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/hyperflex_map_cluster_id_to_protection_info.py b/intersight/model/hyperflex_map_cluster_id_to_protection_info.py index 614a8755fc..19ca75159e 100644 --- a/intersight/model/hyperflex_map_cluster_id_to_protection_info.py +++ b/intersight/model/hyperflex_map_cluster_id_to_protection_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_map_cluster_id_to_protection_info_all_of.py b/intersight/model/hyperflex_map_cluster_id_to_protection_info_all_of.py index b2d2be7f3e..5e08823180 100644 --- a/intersight/model/hyperflex_map_cluster_id_to_protection_info_all_of.py +++ b/intersight/model/hyperflex_map_cluster_id_to_protection_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_map_cluster_id_to_st_snapshot_point.py b/intersight/model/hyperflex_map_cluster_id_to_st_snapshot_point.py index ff17aa0738..418bfac143 100644 --- a/intersight/model/hyperflex_map_cluster_id_to_st_snapshot_point.py +++ b/intersight/model/hyperflex_map_cluster_id_to_st_snapshot_point.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_map_cluster_id_to_st_snapshot_point_all_of.py b/intersight/model/hyperflex_map_cluster_id_to_st_snapshot_point_all_of.py index bfc2924d1e..99a65c394e 100644 --- a/intersight/model/hyperflex_map_cluster_id_to_st_snapshot_point_all_of.py +++ b/intersight/model/hyperflex_map_cluster_id_to_st_snapshot_point_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_map_uuid_to_tracked_disk.py b/intersight/model/hyperflex_map_uuid_to_tracked_disk.py index 250d8f5cdb..c72117f330 100644 --- a/intersight/model/hyperflex_map_uuid_to_tracked_disk.py +++ b/intersight/model/hyperflex_map_uuid_to_tracked_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/hyperflex_map_uuid_to_tracked_disk_all_of.py b/intersight/model/hyperflex_map_uuid_to_tracked_disk_all_of.py index 515c30bbd0..33028f8419 100644 --- a/intersight/model/hyperflex_map_uuid_to_tracked_disk_all_of.py +++ b/intersight/model/hyperflex_map_uuid_to_tracked_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/hyperflex_named_vlan.py b/intersight/model/hyperflex_named_vlan.py index ce35aacbb6..dc0c155099 100644 --- a/intersight/model/hyperflex_named_vlan.py +++ b/intersight/model/hyperflex_named_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/hyperflex_named_vlan_all_of.py b/intersight/model/hyperflex_named_vlan_all_of.py index 6fd4319f33..a4a130ed9b 100644 --- a/intersight/model/hyperflex_named_vlan_all_of.py +++ b/intersight/model/hyperflex_named_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/hyperflex_named_vsan.py b/intersight/model/hyperflex_named_vsan.py index 2f4608218a..a284233dac 100644 --- a/intersight/model/hyperflex_named_vsan.py +++ b/intersight/model/hyperflex_named_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/hyperflex_named_vsan_all_of.py b/intersight/model/hyperflex_named_vsan_all_of.py index 438f184644..469fcf0900 100644 --- a/intersight/model/hyperflex_named_vsan_all_of.py +++ b/intersight/model/hyperflex_named_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/hyperflex_network_port.py b/intersight/model/hyperflex_network_port.py index a156383965..e00c8d4eeb 100644 --- a/intersight/model/hyperflex_network_port.py +++ b/intersight/model/hyperflex_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/hyperflex_network_port_all_of.py b/intersight/model/hyperflex_network_port_all_of.py index 322f567164..4f54e01564 100644 --- a/intersight/model/hyperflex_network_port_all_of.py +++ b/intersight/model/hyperflex_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/hyperflex_node.py b/intersight/model/hyperflex_node.py index 27164c1d03..b676f3fb4f 100644 --- a/intersight/model/hyperflex_node.py +++ b/intersight/model/hyperflex_node.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_node_all_of.py b/intersight/model/hyperflex_node_all_of.py index 6b35c11886..9a56aa3709 100644 --- a/intersight/model/hyperflex_node_all_of.py +++ b/intersight/model/hyperflex_node_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_node_config_policy.py b/intersight/model/hyperflex_node_config_policy.py index f12a6ed381..e8a42d21f8 100644 --- a/intersight/model/hyperflex_node_config_policy.py +++ b/intersight/model/hyperflex_node_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/hyperflex_node_config_policy_all_of.py b/intersight/model/hyperflex_node_config_policy_all_of.py index f109feebc3..1ff66abeb4 100644 --- a/intersight/model/hyperflex_node_config_policy_all_of.py +++ b/intersight/model/hyperflex_node_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/hyperflex_node_config_policy_list.py b/intersight/model/hyperflex_node_config_policy_list.py index b57ac50779..21a672df67 100644 --- a/intersight/model/hyperflex_node_config_policy_list.py +++ b/intersight/model/hyperflex_node_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/hyperflex_node_config_policy_list_all_of.py b/intersight/model/hyperflex_node_config_policy_list_all_of.py index 2eb2f6653e..c817f3f0a7 100644 --- a/intersight/model/hyperflex_node_config_policy_list_all_of.py +++ b/intersight/model/hyperflex_node_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/hyperflex_node_config_policy_relationship.py b/intersight/model/hyperflex_node_config_policy_relationship.py index 509ff71c2c..40f5e08d37 100644 --- a/intersight/model/hyperflex_node_config_policy_relationship.py +++ b/intersight/model/hyperflex_node_config_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 HyperflexNodeConfigPolicyRelationship(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 HyperflexNodeConfigPolicyRelationship(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 HyperflexNodeConfigPolicyRelationship(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 HyperflexNodeConfigPolicyRelationship(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 HyperflexNodeConfigPolicyRelationship(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 HyperflexNodeConfigPolicyRelationship(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 HyperflexNodeConfigPolicyRelationship(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 HyperflexNodeConfigPolicyRelationship(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 HyperflexNodeConfigPolicyRelationship(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 HyperflexNodeConfigPolicyRelationship(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_node_config_policy_response.py b/intersight/model/hyperflex_node_config_policy_response.py index 60eb83cdab..3be74939fa 100644 --- a/intersight/model/hyperflex_node_config_policy_response.py +++ b/intersight/model/hyperflex_node_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/hyperflex_node_list.py b/intersight/model/hyperflex_node_list.py index 129d5ab988..b4dec162c4 100644 --- a/intersight/model/hyperflex_node_list.py +++ b/intersight/model/hyperflex_node_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_node_list_all_of.py b/intersight/model/hyperflex_node_list_all_of.py index 7b4bff969a..34b8c41dc0 100644 --- a/intersight/model/hyperflex_node_list_all_of.py +++ b/intersight/model/hyperflex_node_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_node_profile.py b/intersight/model/hyperflex_node_profile.py index 8ab4a540eb..fa7ada5d9f 100644 --- a/intersight/model/hyperflex_node_profile.py +++ b/intersight/model/hyperflex_node_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_node_profile_all_of.py b/intersight/model/hyperflex_node_profile_all_of.py index 966e414d52..e58744f98e 100644 --- a/intersight/model/hyperflex_node_profile_all_of.py +++ b/intersight/model/hyperflex_node_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_node_profile_list.py b/intersight/model/hyperflex_node_profile_list.py index c09fb35a8f..6b8ef587bd 100644 --- a/intersight/model/hyperflex_node_profile_list.py +++ b/intersight/model/hyperflex_node_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_node_profile_list_all_of.py b/intersight/model/hyperflex_node_profile_list_all_of.py index 9d0034bbdc..bd48be125d 100644 --- a/intersight/model/hyperflex_node_profile_list_all_of.py +++ b/intersight/model/hyperflex_node_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_node_profile_relationship.py b/intersight/model/hyperflex_node_profile_relationship.py index 17ff52c7bc..dd9d1a4cb7 100644 --- a/intersight/model/hyperflex_node_profile_relationship.py +++ b/intersight/model/hyperflex_node_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 """ @@ -92,6 +92,8 @@ class HyperflexNodeProfileRelationship(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 HyperflexNodeProfileRelationship(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 HyperflexNodeProfileRelationship(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 HyperflexNodeProfileRelationship(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 HyperflexNodeProfileRelationship(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 HyperflexNodeProfileRelationship(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 HyperflexNodeProfileRelationship(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 HyperflexNodeProfileRelationship(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 HyperflexNodeProfileRelationship(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 HyperflexNodeProfileRelationship(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_node_profile_response.py b/intersight/model/hyperflex_node_profile_response.py index 05b1e452de..18b202a9d6 100644 --- a/intersight/model/hyperflex_node_profile_response.py +++ b/intersight/model/hyperflex_node_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_node_relationship.py b/intersight/model/hyperflex_node_relationship.py index 5cb52ad012..ddc1822d21 100644 --- a/intersight/model/hyperflex_node_relationship.py +++ b/intersight/model/hyperflex_node_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 """ @@ -96,6 +96,8 @@ class HyperflexNodeRelationship(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", @@ -112,6 +114,7 @@ class HyperflexNodeRelationship(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", @@ -160,9 +163,12 @@ class HyperflexNodeRelationship(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", @@ -226,10 +232,6 @@ class HyperflexNodeRelationship(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", @@ -238,6 +240,7 @@ class HyperflexNodeRelationship(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", @@ -486,6 +489,7 @@ class HyperflexNodeRelationship(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", @@ -655,6 +659,11 @@ class HyperflexNodeRelationship(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", @@ -770,6 +779,7 @@ class HyperflexNodeRelationship(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", @@ -801,6 +811,7 @@ class HyperflexNodeRelationship(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", @@ -833,12 +844,14 @@ class HyperflexNodeRelationship(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_node_response.py b/intersight/model/hyperflex_node_response.py index a317ceb2e1..5c7b90c6fc 100644 --- a/intersight/model/hyperflex_node_response.py +++ b/intersight/model/hyperflex_node_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_port_type_to_port_number_map.py b/intersight/model/hyperflex_port_type_to_port_number_map.py index f19a857d45..93e7b3ca65 100644 --- a/intersight/model/hyperflex_port_type_to_port_number_map.py +++ b/intersight/model/hyperflex_port_type_to_port_number_map.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_port_type_to_port_number_map_all_of.py b/intersight/model/hyperflex_port_type_to_port_number_map_all_of.py index 768b26bd80..9045131266 100644 --- a/intersight/model/hyperflex_port_type_to_port_number_map_all_of.py +++ b/intersight/model/hyperflex_port_type_to_port_number_map_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_protection_info.py b/intersight/model/hyperflex_protection_info.py index 4a6a53cd68..eec5c6a66e 100644 --- a/intersight/model/hyperflex_protection_info.py +++ b/intersight/model/hyperflex_protection_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_protection_info_all_of.py b/intersight/model/hyperflex_protection_info_all_of.py index 1cbd4e9515..98735ac233 100644 --- a/intersight/model/hyperflex_protection_info_all_of.py +++ b/intersight/model/hyperflex_protection_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_proxy_setting_policy.py b/intersight/model/hyperflex_proxy_setting_policy.py index 8198256af4..80f733cbbc 100644 --- a/intersight/model/hyperflex_proxy_setting_policy.py +++ b/intersight/model/hyperflex_proxy_setting_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_proxy_setting_policy_all_of.py b/intersight/model/hyperflex_proxy_setting_policy_all_of.py index ffaf86ec75..b8287474fd 100644 --- a/intersight/model/hyperflex_proxy_setting_policy_all_of.py +++ b/intersight/model/hyperflex_proxy_setting_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_proxy_setting_policy_list.py b/intersight/model/hyperflex_proxy_setting_policy_list.py index 0a46f4f27d..46099721e0 100644 --- a/intersight/model/hyperflex_proxy_setting_policy_list.py +++ b/intersight/model/hyperflex_proxy_setting_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_proxy_setting_policy_list_all_of.py b/intersight/model/hyperflex_proxy_setting_policy_list_all_of.py index a7485b1888..6645ffc08e 100644 --- a/intersight/model/hyperflex_proxy_setting_policy_list_all_of.py +++ b/intersight/model/hyperflex_proxy_setting_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_proxy_setting_policy_relationship.py b/intersight/model/hyperflex_proxy_setting_policy_relationship.py index 201d1bd2bc..8c608ef62e 100644 --- a/intersight/model/hyperflex_proxy_setting_policy_relationship.py +++ b/intersight/model/hyperflex_proxy_setting_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 HyperflexProxySettingPolicyRelationship(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 HyperflexProxySettingPolicyRelationship(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 HyperflexProxySettingPolicyRelationship(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 HyperflexProxySettingPolicyRelationship(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 HyperflexProxySettingPolicyRelationship(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 HyperflexProxySettingPolicyRelationship(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 HyperflexProxySettingPolicyRelationship(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 HyperflexProxySettingPolicyRelationship(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 HyperflexProxySettingPolicyRelationship(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 HyperflexProxySettingPolicyRelationship(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_proxy_setting_policy_response.py b/intersight/model/hyperflex_proxy_setting_policy_response.py index a6beb4c465..63b9d777e4 100644 --- a/intersight/model/hyperflex_proxy_setting_policy_response.py +++ b/intersight/model/hyperflex_proxy_setting_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_replication_cluster_reference_to_schedule.py b/intersight/model/hyperflex_replication_cluster_reference_to_schedule.py index 47f96af624..f968e3c035 100644 --- a/intersight/model/hyperflex_replication_cluster_reference_to_schedule.py +++ b/intersight/model/hyperflex_replication_cluster_reference_to_schedule.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_replication_cluster_reference_to_schedule_all_of.py b/intersight/model/hyperflex_replication_cluster_reference_to_schedule_all_of.py index 03b0bdeb29..951143c43f 100644 --- a/intersight/model/hyperflex_replication_cluster_reference_to_schedule_all_of.py +++ b/intersight/model/hyperflex_replication_cluster_reference_to_schedule_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_replication_peer_info.py b/intersight/model/hyperflex_replication_peer_info.py index 692293b067..7b56c43fd1 100644 --- a/intersight/model/hyperflex_replication_peer_info.py +++ b/intersight/model/hyperflex_replication_peer_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_replication_peer_info_all_of.py b/intersight/model/hyperflex_replication_peer_info_all_of.py index fc7635e299..ed9ad17bf1 100644 --- a/intersight/model/hyperflex_replication_peer_info_all_of.py +++ b/intersight/model/hyperflex_replication_peer_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_replication_plat_datastore.py b/intersight/model/hyperflex_replication_plat_datastore.py index 696c42753c..35320158fa 100644 --- a/intersight/model/hyperflex_replication_plat_datastore.py +++ b/intersight/model/hyperflex_replication_plat_datastore.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_replication_plat_datastore_all_of.py b/intersight/model/hyperflex_replication_plat_datastore_all_of.py index c18e1060aa..15b81a5493 100644 --- a/intersight/model/hyperflex_replication_plat_datastore_all_of.py +++ b/intersight/model/hyperflex_replication_plat_datastore_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_replication_plat_datastore_pair.py b/intersight/model/hyperflex_replication_plat_datastore_pair.py index 3fe9a32e79..dac85f7431 100644 --- a/intersight/model/hyperflex_replication_plat_datastore_pair.py +++ b/intersight/model/hyperflex_replication_plat_datastore_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/hyperflex_replication_plat_datastore_pair_all_of.py b/intersight/model/hyperflex_replication_plat_datastore_pair_all_of.py index e36244ebe5..255c195fc8 100644 --- a/intersight/model/hyperflex_replication_plat_datastore_pair_all_of.py +++ b/intersight/model/hyperflex_replication_plat_datastore_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/hyperflex_replication_schedule.py b/intersight/model/hyperflex_replication_schedule.py index 5bc658358f..ab97137175 100644 --- a/intersight/model/hyperflex_replication_schedule.py +++ b/intersight/model/hyperflex_replication_schedule.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_replication_schedule_all_of.py b/intersight/model/hyperflex_replication_schedule_all_of.py index aa351d92b5..ff5f06f698 100644 --- a/intersight/model/hyperflex_replication_schedule_all_of.py +++ b/intersight/model/hyperflex_replication_schedule_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_replication_status.py b/intersight/model/hyperflex_replication_status.py index f8cea9ca02..225553d94e 100644 --- a/intersight/model/hyperflex_replication_status.py +++ b/intersight/model/hyperflex_replication_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/hyperflex_replication_status_all_of.py b/intersight/model/hyperflex_replication_status_all_of.py index 3942290e46..8c17edb8ca 100644 --- a/intersight/model/hyperflex_replication_status_all_of.py +++ b/intersight/model/hyperflex_replication_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/hyperflex_rpo_status.py b/intersight/model/hyperflex_rpo_status.py index 7ab391ffab..ba7d464202 100644 --- a/intersight/model/hyperflex_rpo_status.py +++ b/intersight/model/hyperflex_rpo_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/hyperflex_rpo_status_all_of.py b/intersight/model/hyperflex_rpo_status_all_of.py index 49034d897e..73bce2d1eb 100644 --- a/intersight/model/hyperflex_rpo_status_all_of.py +++ b/intersight/model/hyperflex_rpo_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/hyperflex_server_firmware_version.py b/intersight/model/hyperflex_server_firmware_version.py index 274a2b3735..8d2d7828eb 100644 --- a/intersight/model/hyperflex_server_firmware_version.py +++ b/intersight/model/hyperflex_server_firmware_version.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_server_firmware_version_all_of.py b/intersight/model/hyperflex_server_firmware_version_all_of.py index 29ec849889..aeac84c41f 100644 --- a/intersight/model/hyperflex_server_firmware_version_all_of.py +++ b/intersight/model/hyperflex_server_firmware_version_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_server_firmware_version_entry.py b/intersight/model/hyperflex_server_firmware_version_entry.py index d7214eb6ff..bb308186f2 100644 --- a/intersight/model/hyperflex_server_firmware_version_entry.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_firmware_version_entry_all_of.py b/intersight/model/hyperflex_server_firmware_version_entry_all_of.py index 65c72b44cc..884f4b0356 100644 --- a/intersight/model/hyperflex_server_firmware_version_entry_all_of.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_firmware_version_entry_list.py b/intersight/model/hyperflex_server_firmware_version_entry_list.py index fe86cec914..a6046ebe7f 100644 --- a/intersight/model/hyperflex_server_firmware_version_entry_list.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_firmware_version_entry_list_all_of.py b/intersight/model/hyperflex_server_firmware_version_entry_list_all_of.py index 5127bc5a42..4c0b1bd62a 100644 --- a/intersight/model/hyperflex_server_firmware_version_entry_list_all_of.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_firmware_version_entry_relationship.py b/intersight/model/hyperflex_server_firmware_version_entry_relationship.py index dd09e10162..cf18d1f7f2 100644 --- a/intersight/model/hyperflex_server_firmware_version_entry_relationship.py +++ b/intersight/model/hyperflex_server_firmware_version_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 """ @@ -81,6 +81,8 @@ class HyperflexServerFirmwareVersionEntryRelationship(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 HyperflexServerFirmwareVersionEntryRelationship(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 HyperflexServerFirmwareVersionEntryRelationship(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 HyperflexServerFirmwareVersionEntryRelationship(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 HyperflexServerFirmwareVersionEntryRelationship(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 HyperflexServerFirmwareVersionEntryRelationship(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 HyperflexServerFirmwareVersionEntryRelationship(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 HyperflexServerFirmwareVersionEntryRelationship(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 HyperflexServerFirmwareVersionEntryRelationship(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 HyperflexServerFirmwareVersionEntryRelationship(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_server_firmware_version_entry_response.py b/intersight/model/hyperflex_server_firmware_version_entry_response.py index 97f27dab25..4b98f865ff 100644 --- a/intersight/model/hyperflex_server_firmware_version_entry_response.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_firmware_version_info.py b/intersight/model/hyperflex_server_firmware_version_info.py index 92df9850e6..9a4dd860b9 100644 --- a/intersight/model/hyperflex_server_firmware_version_info.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_firmware_version_info_all_of.py b/intersight/model/hyperflex_server_firmware_version_info_all_of.py index 58b16f0bec..6987c46214 100644 --- a/intersight/model/hyperflex_server_firmware_version_info_all_of.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_firmware_version_list.py b/intersight/model/hyperflex_server_firmware_version_list.py index 9151fbcb41..7988872d99 100644 --- a/intersight/model/hyperflex_server_firmware_version_list.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_firmware_version_list_all_of.py b/intersight/model/hyperflex_server_firmware_version_list_all_of.py index 5e3182acb2..a059aa7a7c 100644 --- a/intersight/model/hyperflex_server_firmware_version_list_all_of.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_firmware_version_relationship.py b/intersight/model/hyperflex_server_firmware_version_relationship.py index 4c26eca711..b02b1f4f5e 100644 --- a/intersight/model/hyperflex_server_firmware_version_relationship.py +++ b/intersight/model/hyperflex_server_firmware_version_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 HyperflexServerFirmwareVersionRelationship(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 HyperflexServerFirmwareVersionRelationship(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 HyperflexServerFirmwareVersionRelationship(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 HyperflexServerFirmwareVersionRelationship(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 HyperflexServerFirmwareVersionRelationship(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 HyperflexServerFirmwareVersionRelationship(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 HyperflexServerFirmwareVersionRelationship(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 HyperflexServerFirmwareVersionRelationship(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 HyperflexServerFirmwareVersionRelationship(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 HyperflexServerFirmwareVersionRelationship(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_server_firmware_version_response.py b/intersight/model/hyperflex_server_firmware_version_response.py index fbe87a24bd..03f2638eac 100644 --- a/intersight/model/hyperflex_server_firmware_version_response.py +++ b/intersight/model/hyperflex_server_firmware_version_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_server_model.py b/intersight/model/hyperflex_server_model.py index a0587d9e4a..3ecbb0dfef 100644 --- a/intersight/model/hyperflex_server_model.py +++ b/intersight/model/hyperflex_server_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/hyperflex_server_model_all_of.py b/intersight/model/hyperflex_server_model_all_of.py index 6b833d3ff9..e5a42c9942 100644 --- a/intersight/model/hyperflex_server_model_all_of.py +++ b/intersight/model/hyperflex_server_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/hyperflex_server_model_entry.py b/intersight/model/hyperflex_server_model_entry.py index 6a6325910e..245acbdf84 100644 --- a/intersight/model/hyperflex_server_model_entry.py +++ b/intersight/model/hyperflex_server_model_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_server_model_entry_all_of.py b/intersight/model/hyperflex_server_model_entry_all_of.py index c8646ccd97..4db002ba81 100644 --- a/intersight/model/hyperflex_server_model_entry_all_of.py +++ b/intersight/model/hyperflex_server_model_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_server_model_list.py b/intersight/model/hyperflex_server_model_list.py index 026d465a93..3439c7daea 100644 --- a/intersight/model/hyperflex_server_model_list.py +++ b/intersight/model/hyperflex_server_model_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_server_model_list_all_of.py b/intersight/model/hyperflex_server_model_list_all_of.py index 21ab947588..9366514369 100644 --- a/intersight/model/hyperflex_server_model_list_all_of.py +++ b/intersight/model/hyperflex_server_model_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_server_model_relationship.py b/intersight/model/hyperflex_server_model_relationship.py index 85ce9d57fb..6e491a79d2 100644 --- a/intersight/model/hyperflex_server_model_relationship.py +++ b/intersight/model/hyperflex_server_model_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 HyperflexServerModelRelationship(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 HyperflexServerModelRelationship(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 HyperflexServerModelRelationship(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 HyperflexServerModelRelationship(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 HyperflexServerModelRelationship(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 HyperflexServerModelRelationship(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 HyperflexServerModelRelationship(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 HyperflexServerModelRelationship(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 HyperflexServerModelRelationship(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 HyperflexServerModelRelationship(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_server_model_response.py b/intersight/model/hyperflex_server_model_response.py index d1d09e91ea..1ae6e7772f 100644 --- a/intersight/model/hyperflex_server_model_response.py +++ b/intersight/model/hyperflex_server_model_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_snapshot_files.py b/intersight/model/hyperflex_snapshot_files.py index 160fb49962..95df17525c 100644 --- a/intersight/model/hyperflex_snapshot_files.py +++ b/intersight/model/hyperflex_snapshot_files.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_snapshot_files_all_of.py b/intersight/model/hyperflex_snapshot_files_all_of.py index 8dd5cacac5..53281e7019 100644 --- a/intersight/model/hyperflex_snapshot_files_all_of.py +++ b/intersight/model/hyperflex_snapshot_files_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_snapshot_info_brief.py b/intersight/model/hyperflex_snapshot_info_brief.py index 6d18db830d..0fb22ca99a 100644 --- a/intersight/model/hyperflex_snapshot_info_brief.py +++ b/intersight/model/hyperflex_snapshot_info_brief.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_snapshot_info_brief_all_of.py b/intersight/model/hyperflex_snapshot_info_brief_all_of.py index c19d7b4a94..f93bd12dc2 100644 --- a/intersight/model/hyperflex_snapshot_info_brief_all_of.py +++ b/intersight/model/hyperflex_snapshot_info_brief_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_snapshot_point.py b/intersight/model/hyperflex_snapshot_point.py index 6d1d4ad7dc..c8e9735079 100644 --- a/intersight/model/hyperflex_snapshot_point.py +++ b/intersight/model/hyperflex_snapshot_point.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_snapshot_point_all_of.py b/intersight/model/hyperflex_snapshot_point_all_of.py index 92983ce69f..5cae4df5c6 100644 --- a/intersight/model/hyperflex_snapshot_point_all_of.py +++ b/intersight/model/hyperflex_snapshot_point_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_snapshot_status.py b/intersight/model/hyperflex_snapshot_status.py index a02c238381..39d2353d77 100644 --- a/intersight/model/hyperflex_snapshot_status.py +++ b/intersight/model/hyperflex_snapshot_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/hyperflex_snapshot_status_all_of.py b/intersight/model/hyperflex_snapshot_status_all_of.py index 5a31606b18..03326e0c49 100644 --- a/intersight/model/hyperflex_snapshot_status_all_of.py +++ b/intersight/model/hyperflex_snapshot_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/hyperflex_software_distribution_component.py b/intersight/model/hyperflex_software_distribution_component.py index 31548359f3..8f86342fad 100644 --- a/intersight/model/hyperflex_software_distribution_component.py +++ b/intersight/model/hyperflex_software_distribution_component.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_software_distribution_component_all_of.py b/intersight/model/hyperflex_software_distribution_component_all_of.py index fe610fff2f..288f21c250 100644 --- a/intersight/model/hyperflex_software_distribution_component_all_of.py +++ b/intersight/model/hyperflex_software_distribution_component_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_software_distribution_component_list.py b/intersight/model/hyperflex_software_distribution_component_list.py index 64a16beadd..6a9751cf84 100644 --- a/intersight/model/hyperflex_software_distribution_component_list.py +++ b/intersight/model/hyperflex_software_distribution_component_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_software_distribution_component_list_all_of.py b/intersight/model/hyperflex_software_distribution_component_list_all_of.py index 4f18329397..b7f4c0c5a6 100644 --- a/intersight/model/hyperflex_software_distribution_component_list_all_of.py +++ b/intersight/model/hyperflex_software_distribution_component_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_software_distribution_component_relationship.py b/intersight/model/hyperflex_software_distribution_component_relationship.py index ac649e9415..d25be811e5 100644 --- a/intersight/model/hyperflex_software_distribution_component_relationship.py +++ b/intersight/model/hyperflex_software_distribution_component_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 HyperflexSoftwareDistributionComponentRelationship(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 HyperflexSoftwareDistributionComponentRelationship(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 HyperflexSoftwareDistributionComponentRelationship(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 HyperflexSoftwareDistributionComponentRelationship(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 HyperflexSoftwareDistributionComponentRelationship(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 HyperflexSoftwareDistributionComponentRelationship(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 HyperflexSoftwareDistributionComponentRelationship(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 HyperflexSoftwareDistributionComponentRelationship(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 HyperflexSoftwareDistributionComponentRelationship(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 HyperflexSoftwareDistributionComponentRelationship(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_software_distribution_component_response.py b/intersight/model/hyperflex_software_distribution_component_response.py index ebbf2f6a75..1f0ab30302 100644 --- a/intersight/model/hyperflex_software_distribution_component_response.py +++ b/intersight/model/hyperflex_software_distribution_component_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_software_distribution_entry.py b/intersight/model/hyperflex_software_distribution_entry.py index be288fa0e0..88bd0cc41d 100644 --- a/intersight/model/hyperflex_software_distribution_entry.py +++ b/intersight/model/hyperflex_software_distribution_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_software_distribution_entry_all_of.py b/intersight/model/hyperflex_software_distribution_entry_all_of.py index 7d989e1153..e178a0f106 100644 --- a/intersight/model/hyperflex_software_distribution_entry_all_of.py +++ b/intersight/model/hyperflex_software_distribution_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_software_distribution_entry_list.py b/intersight/model/hyperflex_software_distribution_entry_list.py index 7d3af58867..d3a79e28ba 100644 --- a/intersight/model/hyperflex_software_distribution_entry_list.py +++ b/intersight/model/hyperflex_software_distribution_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_software_distribution_entry_list_all_of.py b/intersight/model/hyperflex_software_distribution_entry_list_all_of.py index 5cb6c9ed5d..3a0281d1ca 100644 --- a/intersight/model/hyperflex_software_distribution_entry_list_all_of.py +++ b/intersight/model/hyperflex_software_distribution_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_software_distribution_entry_relationship.py b/intersight/model/hyperflex_software_distribution_entry_relationship.py index c9af056d66..c127c3c16c 100644 --- a/intersight/model/hyperflex_software_distribution_entry_relationship.py +++ b/intersight/model/hyperflex_software_distribution_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 HyperflexSoftwareDistributionEntryRelationship(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 HyperflexSoftwareDistributionEntryRelationship(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 HyperflexSoftwareDistributionEntryRelationship(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 HyperflexSoftwareDistributionEntryRelationship(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 HyperflexSoftwareDistributionEntryRelationship(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 HyperflexSoftwareDistributionEntryRelationship(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 HyperflexSoftwareDistributionEntryRelationship(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 HyperflexSoftwareDistributionEntryRelationship(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 HyperflexSoftwareDistributionEntryRelationship(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 HyperflexSoftwareDistributionEntryRelationship(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_software_distribution_entry_response.py b/intersight/model/hyperflex_software_distribution_entry_response.py index 04d01c59c3..72ab842e20 100644 --- a/intersight/model/hyperflex_software_distribution_entry_response.py +++ b/intersight/model/hyperflex_software_distribution_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_software_distribution_version.py b/intersight/model/hyperflex_software_distribution_version.py index f67dc86bec..09ccc3c54a 100644 --- a/intersight/model/hyperflex_software_distribution_version.py +++ b/intersight/model/hyperflex_software_distribution_version.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_software_distribution_version_all_of.py b/intersight/model/hyperflex_software_distribution_version_all_of.py index 420b065a44..33a125d3f9 100644 --- a/intersight/model/hyperflex_software_distribution_version_all_of.py +++ b/intersight/model/hyperflex_software_distribution_version_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_software_distribution_version_list.py b/intersight/model/hyperflex_software_distribution_version_list.py index e9eaed9d8f..a8613d1101 100644 --- a/intersight/model/hyperflex_software_distribution_version_list.py +++ b/intersight/model/hyperflex_software_distribution_version_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_software_distribution_version_list_all_of.py b/intersight/model/hyperflex_software_distribution_version_list_all_of.py index 648e3fe7e1..fc9d182ec6 100644 --- a/intersight/model/hyperflex_software_distribution_version_list_all_of.py +++ b/intersight/model/hyperflex_software_distribution_version_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_software_distribution_version_relationship.py b/intersight/model/hyperflex_software_distribution_version_relationship.py index 3485e2a144..16f6d5a74e 100644 --- a/intersight/model/hyperflex_software_distribution_version_relationship.py +++ b/intersight/model/hyperflex_software_distribution_version_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 HyperflexSoftwareDistributionVersionRelationship(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 HyperflexSoftwareDistributionVersionRelationship(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 HyperflexSoftwareDistributionVersionRelationship(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 HyperflexSoftwareDistributionVersionRelationship(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 HyperflexSoftwareDistributionVersionRelationship(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 HyperflexSoftwareDistributionVersionRelationship(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 HyperflexSoftwareDistributionVersionRelationship(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 HyperflexSoftwareDistributionVersionRelationship(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 HyperflexSoftwareDistributionVersionRelationship(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 HyperflexSoftwareDistributionVersionRelationship(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_software_distribution_version_response.py b/intersight/model/hyperflex_software_distribution_version_response.py index 2dd3006c26..d58d2a5cd7 100644 --- a/intersight/model/hyperflex_software_distribution_version_response.py +++ b/intersight/model/hyperflex_software_distribution_version_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_software_version_policy.py b/intersight/model/hyperflex_software_version_policy.py index 9de93b8104..c9e75ee1e6 100644 --- a/intersight/model/hyperflex_software_version_policy.py +++ b/intersight/model/hyperflex_software_version_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_software_version_policy_all_of.py b/intersight/model/hyperflex_software_version_policy_all_of.py index ad82ab2b33..dd163fb6ff 100644 --- a/intersight/model/hyperflex_software_version_policy_all_of.py +++ b/intersight/model/hyperflex_software_version_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_software_version_policy_list.py b/intersight/model/hyperflex_software_version_policy_list.py index 66bd753d13..454585ddc7 100644 --- a/intersight/model/hyperflex_software_version_policy_list.py +++ b/intersight/model/hyperflex_software_version_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_software_version_policy_list_all_of.py b/intersight/model/hyperflex_software_version_policy_list_all_of.py index f19fd1f61f..8fd3ef73a7 100644 --- a/intersight/model/hyperflex_software_version_policy_list_all_of.py +++ b/intersight/model/hyperflex_software_version_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_software_version_policy_relationship.py b/intersight/model/hyperflex_software_version_policy_relationship.py index d5087635e8..7f5d42d108 100644 --- a/intersight/model/hyperflex_software_version_policy_relationship.py +++ b/intersight/model/hyperflex_software_version_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 HyperflexSoftwareVersionPolicyRelationship(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 HyperflexSoftwareVersionPolicyRelationship(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 HyperflexSoftwareVersionPolicyRelationship(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 HyperflexSoftwareVersionPolicyRelationship(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 HyperflexSoftwareVersionPolicyRelationship(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 HyperflexSoftwareVersionPolicyRelationship(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 HyperflexSoftwareVersionPolicyRelationship(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 HyperflexSoftwareVersionPolicyRelationship(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 HyperflexSoftwareVersionPolicyRelationship(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 HyperflexSoftwareVersionPolicyRelationship(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_software_version_policy_response.py b/intersight/model/hyperflex_software_version_policy_response.py index 4cc3a6da36..881b6c1058 100644 --- a/intersight/model/hyperflex_software_version_policy_response.py +++ b/intersight/model/hyperflex_software_version_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_st_platform_cluster_healing_info.py b/intersight/model/hyperflex_st_platform_cluster_healing_info.py index 7b4090a423..f07d2b6a37 100644 --- a/intersight/model/hyperflex_st_platform_cluster_healing_info.py +++ b/intersight/model/hyperflex_st_platform_cluster_healing_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_st_platform_cluster_healing_info_all_of.py b/intersight/model/hyperflex_st_platform_cluster_healing_info_all_of.py index b0979ecfcc..d092bc81c1 100644 --- a/intersight/model/hyperflex_st_platform_cluster_healing_info_all_of.py +++ b/intersight/model/hyperflex_st_platform_cluster_healing_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_st_platform_cluster_resiliency_info.py b/intersight/model/hyperflex_st_platform_cluster_resiliency_info.py index 0ac537ed70..4ff3fc82fe 100644 --- a/intersight/model/hyperflex_st_platform_cluster_resiliency_info.py +++ b/intersight/model/hyperflex_st_platform_cluster_resiliency_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_st_platform_cluster_resiliency_info_all_of.py b/intersight/model/hyperflex_st_platform_cluster_resiliency_info_all_of.py index c68a144c77..07385719db 100644 --- a/intersight/model/hyperflex_st_platform_cluster_resiliency_info_all_of.py +++ b/intersight/model/hyperflex_st_platform_cluster_resiliency_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_storage_container.py b/intersight/model/hyperflex_storage_container.py index 5f266697af..53531d556e 100644 --- a/intersight/model/hyperflex_storage_container.py +++ b/intersight/model/hyperflex_storage_container.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_storage_container_all_of.py b/intersight/model/hyperflex_storage_container_all_of.py index 85884c17c3..a647e7eb29 100644 --- a/intersight/model/hyperflex_storage_container_all_of.py +++ b/intersight/model/hyperflex_storage_container_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_storage_container_list.py b/intersight/model/hyperflex_storage_container_list.py index c1a3661eab..ef55d80461 100644 --- a/intersight/model/hyperflex_storage_container_list.py +++ b/intersight/model/hyperflex_storage_container_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_storage_container_list_all_of.py b/intersight/model/hyperflex_storage_container_list_all_of.py index aa31f657f0..34f5f54b47 100644 --- a/intersight/model/hyperflex_storage_container_list_all_of.py +++ b/intersight/model/hyperflex_storage_container_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_storage_container_relationship.py b/intersight/model/hyperflex_storage_container_relationship.py index cd516979b6..b69c94d25f 100644 --- a/intersight/model/hyperflex_storage_container_relationship.py +++ b/intersight/model/hyperflex_storage_container_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 """ @@ -101,6 +101,8 @@ class HyperflexStorageContainerRelationship(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", @@ -117,6 +119,7 @@ class HyperflexStorageContainerRelationship(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", @@ -165,9 +168,12 @@ class HyperflexStorageContainerRelationship(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", @@ -231,10 +237,6 @@ class HyperflexStorageContainerRelationship(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", @@ -243,6 +245,7 @@ class HyperflexStorageContainerRelationship(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", @@ -491,6 +494,7 @@ class HyperflexStorageContainerRelationship(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", @@ -660,6 +664,11 @@ class HyperflexStorageContainerRelationship(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", @@ -775,6 +784,7 @@ class HyperflexStorageContainerRelationship(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", @@ -806,6 +816,7 @@ class HyperflexStorageContainerRelationship(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", @@ -838,12 +849,14 @@ class HyperflexStorageContainerRelationship(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_storage_container_response.py b/intersight/model/hyperflex_storage_container_response.py index 7fb0fb6061..8ab8461565 100644 --- a/intersight/model/hyperflex_storage_container_response.py +++ b/intersight/model/hyperflex_storage_container_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_summary.py b/intersight/model/hyperflex_summary.py index 71dbeebc08..415f4fc0c1 100644 --- a/intersight/model/hyperflex_summary.py +++ b/intersight/model/hyperflex_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_summary_all_of.py b/intersight/model/hyperflex_summary_all_of.py index 4dfc5a2678..5afbb32047 100644 --- a/intersight/model/hyperflex_summary_all_of.py +++ b/intersight/model/hyperflex_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_sys_config_policy.py b/intersight/model/hyperflex_sys_config_policy.py index 22c7826594..a8657d2715 100644 --- a/intersight/model/hyperflex_sys_config_policy.py +++ b/intersight/model/hyperflex_sys_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/hyperflex_sys_config_policy_all_of.py b/intersight/model/hyperflex_sys_config_policy_all_of.py index 1e9621d849..bd89cdef6e 100644 --- a/intersight/model/hyperflex_sys_config_policy_all_of.py +++ b/intersight/model/hyperflex_sys_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/hyperflex_sys_config_policy_list.py b/intersight/model/hyperflex_sys_config_policy_list.py index d786e73123..2593e29f8d 100644 --- a/intersight/model/hyperflex_sys_config_policy_list.py +++ b/intersight/model/hyperflex_sys_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/hyperflex_sys_config_policy_list_all_of.py b/intersight/model/hyperflex_sys_config_policy_list_all_of.py index c1c23645a5..cae52ac654 100644 --- a/intersight/model/hyperflex_sys_config_policy_list_all_of.py +++ b/intersight/model/hyperflex_sys_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/hyperflex_sys_config_policy_relationship.py b/intersight/model/hyperflex_sys_config_policy_relationship.py index ad14bbd844..688e2e1efc 100644 --- a/intersight/model/hyperflex_sys_config_policy_relationship.py +++ b/intersight/model/hyperflex_sys_config_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 """ @@ -329,6 +329,8 @@ class HyperflexSysConfigPolicyRelationship(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", @@ -345,6 +347,7 @@ class HyperflexSysConfigPolicyRelationship(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", @@ -393,9 +396,12 @@ class HyperflexSysConfigPolicyRelationship(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", @@ -459,10 +465,6 @@ class HyperflexSysConfigPolicyRelationship(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", @@ -471,6 +473,7 @@ class HyperflexSysConfigPolicyRelationship(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", @@ -719,6 +722,7 @@ class HyperflexSysConfigPolicyRelationship(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", @@ -888,6 +892,11 @@ class HyperflexSysConfigPolicyRelationship(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", @@ -1003,6 +1012,7 @@ class HyperflexSysConfigPolicyRelationship(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", @@ -1034,6 +1044,7 @@ class HyperflexSysConfigPolicyRelationship(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", @@ -1066,12 +1077,14 @@ class HyperflexSysConfigPolicyRelationship(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_sys_config_policy_response.py b/intersight/model/hyperflex_sys_config_policy_response.py index b2ceccc019..025f041e8d 100644 --- a/intersight/model/hyperflex_sys_config_policy_response.py +++ b/intersight/model/hyperflex_sys_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/hyperflex_tracked_disk.py b/intersight/model/hyperflex_tracked_disk.py index f0bcdd6b91..e31c54b0ee 100644 --- a/intersight/model/hyperflex_tracked_disk.py +++ b/intersight/model/hyperflex_tracked_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/hyperflex_tracked_disk_all_of.py b/intersight/model/hyperflex_tracked_disk_all_of.py index 29cfcc5cc0..1c3c5e4771 100644 --- a/intersight/model/hyperflex_tracked_disk_all_of.py +++ b/intersight/model/hyperflex_tracked_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/hyperflex_tracked_file.py b/intersight/model/hyperflex_tracked_file.py index 13c822eee0..6fbce66ff8 100644 --- a/intersight/model/hyperflex_tracked_file.py +++ b/intersight/model/hyperflex_tracked_file.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_tracked_file_all_of.py b/intersight/model/hyperflex_tracked_file_all_of.py index 3da2162e49..1079642e11 100644 --- a/intersight/model/hyperflex_tracked_file_all_of.py +++ b/intersight/model/hyperflex_tracked_file_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_ucsm_config_policy.py b/intersight/model/hyperflex_ucsm_config_policy.py index 626684aee2..8258f42b5f 100644 --- a/intersight/model/hyperflex_ucsm_config_policy.py +++ b/intersight/model/hyperflex_ucsm_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/hyperflex_ucsm_config_policy_all_of.py b/intersight/model/hyperflex_ucsm_config_policy_all_of.py index e4a775ae85..f080fd84d2 100644 --- a/intersight/model/hyperflex_ucsm_config_policy_all_of.py +++ b/intersight/model/hyperflex_ucsm_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/hyperflex_ucsm_config_policy_list.py b/intersight/model/hyperflex_ucsm_config_policy_list.py index de26e2365e..540c5d6530 100644 --- a/intersight/model/hyperflex_ucsm_config_policy_list.py +++ b/intersight/model/hyperflex_ucsm_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/hyperflex_ucsm_config_policy_list_all_of.py b/intersight/model/hyperflex_ucsm_config_policy_list_all_of.py index bf8ca88152..fe65c8f485 100644 --- a/intersight/model/hyperflex_ucsm_config_policy_list_all_of.py +++ b/intersight/model/hyperflex_ucsm_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/hyperflex_ucsm_config_policy_relationship.py b/intersight/model/hyperflex_ucsm_config_policy_relationship.py index 27005e7c99..e060b1339e 100644 --- a/intersight/model/hyperflex_ucsm_config_policy_relationship.py +++ b/intersight/model/hyperflex_ucsm_config_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 """ @@ -80,6 +80,8 @@ class HyperflexUcsmConfigPolicyRelationship(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 HyperflexUcsmConfigPolicyRelationship(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 HyperflexUcsmConfigPolicyRelationship(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 HyperflexUcsmConfigPolicyRelationship(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 HyperflexUcsmConfigPolicyRelationship(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 HyperflexUcsmConfigPolicyRelationship(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 HyperflexUcsmConfigPolicyRelationship(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 HyperflexUcsmConfigPolicyRelationship(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 HyperflexUcsmConfigPolicyRelationship(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 HyperflexUcsmConfigPolicyRelationship(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_ucsm_config_policy_response.py b/intersight/model/hyperflex_ucsm_config_policy_response.py index 89fa92ba8a..da13112989 100644 --- a/intersight/model/hyperflex_ucsm_config_policy_response.py +++ b/intersight/model/hyperflex_ucsm_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/hyperflex_vcenter_config_policy.py b/intersight/model/hyperflex_vcenter_config_policy.py index 1295a2bf07..2362cdfd45 100644 --- a/intersight/model/hyperflex_vcenter_config_policy.py +++ b/intersight/model/hyperflex_vcenter_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/hyperflex_vcenter_config_policy_all_of.py b/intersight/model/hyperflex_vcenter_config_policy_all_of.py index 76715858ec..d2cd17ea6f 100644 --- a/intersight/model/hyperflex_vcenter_config_policy_all_of.py +++ b/intersight/model/hyperflex_vcenter_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/hyperflex_vcenter_config_policy_list.py b/intersight/model/hyperflex_vcenter_config_policy_list.py index 8ce2291e70..f9f492430b 100644 --- a/intersight/model/hyperflex_vcenter_config_policy_list.py +++ b/intersight/model/hyperflex_vcenter_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/hyperflex_vcenter_config_policy_list_all_of.py b/intersight/model/hyperflex_vcenter_config_policy_list_all_of.py index 573a3fc864..8a0c258085 100644 --- a/intersight/model/hyperflex_vcenter_config_policy_list_all_of.py +++ b/intersight/model/hyperflex_vcenter_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/hyperflex_vcenter_config_policy_relationship.py b/intersight/model/hyperflex_vcenter_config_policy_relationship.py index fa7e82b8f9..58626e84db 100644 --- a/intersight/model/hyperflex_vcenter_config_policy_relationship.py +++ b/intersight/model/hyperflex_vcenter_config_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 HyperflexVcenterConfigPolicyRelationship(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 HyperflexVcenterConfigPolicyRelationship(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 HyperflexVcenterConfigPolicyRelationship(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 HyperflexVcenterConfigPolicyRelationship(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 HyperflexVcenterConfigPolicyRelationship(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 HyperflexVcenterConfigPolicyRelationship(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 HyperflexVcenterConfigPolicyRelationship(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 HyperflexVcenterConfigPolicyRelationship(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 HyperflexVcenterConfigPolicyRelationship(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 HyperflexVcenterConfigPolicyRelationship(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_vcenter_config_policy_response.py b/intersight/model/hyperflex_vcenter_config_policy_response.py index 9ff2f7d360..714f9bc8b7 100644 --- a/intersight/model/hyperflex_vcenter_config_policy_response.py +++ b/intersight/model/hyperflex_vcenter_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/hyperflex_vdisk_config.py b/intersight/model/hyperflex_vdisk_config.py index 9f71a2b1cd..2502142e39 100644 --- a/intersight/model/hyperflex_vdisk_config.py +++ b/intersight/model/hyperflex_vdisk_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/hyperflex_vdisk_config_all_of.py b/intersight/model/hyperflex_vdisk_config_all_of.py index f663125f3f..8b760fa2a1 100644 --- a/intersight/model/hyperflex_vdisk_config_all_of.py +++ b/intersight/model/hyperflex_vdisk_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/hyperflex_virtual_machine.py b/intersight/model/hyperflex_virtual_machine.py index 33260b9542..99df73756e 100644 --- a/intersight/model/hyperflex_virtual_machine.py +++ b/intersight/model/hyperflex_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 """ diff --git a/intersight/model/hyperflex_virtual_machine_all_of.py b/intersight/model/hyperflex_virtual_machine_all_of.py index 165b964499..9c23467f33 100644 --- a/intersight/model/hyperflex_virtual_machine_all_of.py +++ b/intersight/model/hyperflex_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/hyperflex_virtual_machine_runtime_info.py b/intersight/model/hyperflex_virtual_machine_runtime_info.py index b0328052b9..dfbbfc9b2c 100644 --- a/intersight/model/hyperflex_virtual_machine_runtime_info.py +++ b/intersight/model/hyperflex_virtual_machine_runtime_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_virtual_machine_runtime_info_all_of.py b/intersight/model/hyperflex_virtual_machine_runtime_info_all_of.py index 950b804270..ed5e0f0f4f 100644 --- a/intersight/model/hyperflex_virtual_machine_runtime_info_all_of.py +++ b/intersight/model/hyperflex_virtual_machine_runtime_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_vm_backup_info.py b/intersight/model/hyperflex_vm_backup_info.py index ed5a51487c..8e0e86f2e1 100644 --- a/intersight/model/hyperflex_vm_backup_info.py +++ b/intersight/model/hyperflex_vm_backup_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_vm_backup_info_all_of.py b/intersight/model/hyperflex_vm_backup_info_all_of.py index de77712a02..7e42e99fd3 100644 --- a/intersight/model/hyperflex_vm_backup_info_all_of.py +++ b/intersight/model/hyperflex_vm_backup_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_vm_backup_info_list.py b/intersight/model/hyperflex_vm_backup_info_list.py index e4c47a6da1..47a8f2d0a1 100644 --- a/intersight/model/hyperflex_vm_backup_info_list.py +++ b/intersight/model/hyperflex_vm_backup_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_vm_backup_info_list_all_of.py b/intersight/model/hyperflex_vm_backup_info_list_all_of.py index 49fdd3cea5..d6e7b24a6b 100644 --- a/intersight/model/hyperflex_vm_backup_info_list_all_of.py +++ b/intersight/model/hyperflex_vm_backup_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_vm_backup_info_relationship.py b/intersight/model/hyperflex_vm_backup_info_relationship.py index 25c43c6f4d..2f08e818d9 100644 --- a/intersight/model/hyperflex_vm_backup_info_relationship.py +++ b/intersight/model/hyperflex_vm_backup_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 """ @@ -109,6 +109,8 @@ class HyperflexVmBackupInfoRelationship(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", @@ -125,6 +127,7 @@ class HyperflexVmBackupInfoRelationship(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", @@ -173,9 +176,12 @@ class HyperflexVmBackupInfoRelationship(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", @@ -239,10 +245,6 @@ class HyperflexVmBackupInfoRelationship(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", @@ -251,6 +253,7 @@ class HyperflexVmBackupInfoRelationship(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", @@ -499,6 +502,7 @@ class HyperflexVmBackupInfoRelationship(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", @@ -668,6 +672,11 @@ class HyperflexVmBackupInfoRelationship(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", @@ -783,6 +792,7 @@ class HyperflexVmBackupInfoRelationship(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", @@ -814,6 +824,7 @@ class HyperflexVmBackupInfoRelationship(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", @@ -846,12 +857,14 @@ class HyperflexVmBackupInfoRelationship(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_vm_backup_info_response.py b/intersight/model/hyperflex_vm_backup_info_response.py index b17c60b64a..303a40c808 100644 --- a/intersight/model/hyperflex_vm_backup_info_response.py +++ b/intersight/model/hyperflex_vm_backup_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_vm_disk.py b/intersight/model/hyperflex_vm_disk.py index 3d2d837984..a4c65d87a0 100644 --- a/intersight/model/hyperflex_vm_disk.py +++ b/intersight/model/hyperflex_vm_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/hyperflex_vm_disk_all_of.py b/intersight/model/hyperflex_vm_disk_all_of.py index 313014e2e8..56a656f951 100644 --- a/intersight/model/hyperflex_vm_disk_all_of.py +++ b/intersight/model/hyperflex_vm_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/hyperflex_vm_import_operation.py b/intersight/model/hyperflex_vm_import_operation.py index b7583edfb6..ab73e9313d 100644 --- a/intersight/model/hyperflex_vm_import_operation.py +++ b/intersight/model/hyperflex_vm_import_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/hyperflex_vm_import_operation_all_of.py b/intersight/model/hyperflex_vm_import_operation_all_of.py index 44152f4b44..16dc3f97df 100644 --- a/intersight/model/hyperflex_vm_import_operation_all_of.py +++ b/intersight/model/hyperflex_vm_import_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/hyperflex_vm_import_operation_list.py b/intersight/model/hyperflex_vm_import_operation_list.py index 7864bc1bb3..c08cefc138 100644 --- a/intersight/model/hyperflex_vm_import_operation_list.py +++ b/intersight/model/hyperflex_vm_import_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/hyperflex_vm_import_operation_list_all_of.py b/intersight/model/hyperflex_vm_import_operation_list_all_of.py index 9c715f3f55..4b0098321a 100644 --- a/intersight/model/hyperflex_vm_import_operation_list_all_of.py +++ b/intersight/model/hyperflex_vm_import_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/hyperflex_vm_import_operation_response.py b/intersight/model/hyperflex_vm_import_operation_response.py index 3532eb2cdc..12dc02b8a4 100644 --- a/intersight/model/hyperflex_vm_import_operation_response.py +++ b/intersight/model/hyperflex_vm_import_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/hyperflex_vm_interface.py b/intersight/model/hyperflex_vm_interface.py index 881d7fafce..768cc14dd2 100644 --- a/intersight/model/hyperflex_vm_interface.py +++ b/intersight/model/hyperflex_vm_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/hyperflex_vm_interface_all_of.py b/intersight/model/hyperflex_vm_interface_all_of.py index 35b59c17c7..9900ed3d90 100644 --- a/intersight/model/hyperflex_vm_interface_all_of.py +++ b/intersight/model/hyperflex_vm_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/hyperflex_vm_protection_space_usage.py b/intersight/model/hyperflex_vm_protection_space_usage.py index 0d298383bf..3d0ffefa7d 100644 --- a/intersight/model/hyperflex_vm_protection_space_usage.py +++ b/intersight/model/hyperflex_vm_protection_space_usage.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_vm_protection_space_usage_all_of.py b/intersight/model/hyperflex_vm_protection_space_usage_all_of.py index a7de8c88ad..329a60029f 100644 --- a/intersight/model/hyperflex_vm_protection_space_usage_all_of.py +++ b/intersight/model/hyperflex_vm_protection_space_usage_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The 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_vm_restore_operation.py b/intersight/model/hyperflex_vm_restore_operation.py index 38f42601b4..765d0d31ba 100644 --- a/intersight/model/hyperflex_vm_restore_operation.py +++ b/intersight/model/hyperflex_vm_restore_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/hyperflex_vm_restore_operation_all_of.py b/intersight/model/hyperflex_vm_restore_operation_all_of.py index efdf1e23a8..12d3e6fdef 100644 --- a/intersight/model/hyperflex_vm_restore_operation_all_of.py +++ b/intersight/model/hyperflex_vm_restore_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/hyperflex_vm_restore_operation_list.py b/intersight/model/hyperflex_vm_restore_operation_list.py index 5e41384488..0071c851ee 100644 --- a/intersight/model/hyperflex_vm_restore_operation_list.py +++ b/intersight/model/hyperflex_vm_restore_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/hyperflex_vm_restore_operation_list_all_of.py b/intersight/model/hyperflex_vm_restore_operation_list_all_of.py index 2a5740cf34..ef0dd3d2b1 100644 --- a/intersight/model/hyperflex_vm_restore_operation_list_all_of.py +++ b/intersight/model/hyperflex_vm_restore_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/hyperflex_vm_restore_operation_response.py b/intersight/model/hyperflex_vm_restore_operation_response.py index 0db05a401d..0d14f0ba0e 100644 --- a/intersight/model/hyperflex_vm_restore_operation_response.py +++ b/intersight/model/hyperflex_vm_restore_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/hyperflex_vm_snapshot_info.py b/intersight/model/hyperflex_vm_snapshot_info.py index 07fbe20958..34a30e3387 100644 --- a/intersight/model/hyperflex_vm_snapshot_info.py +++ b/intersight/model/hyperflex_vm_snapshot_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_vm_snapshot_info_all_of.py b/intersight/model/hyperflex_vm_snapshot_info_all_of.py index fa573d1ac9..df8b92711c 100644 --- a/intersight/model/hyperflex_vm_snapshot_info_all_of.py +++ b/intersight/model/hyperflex_vm_snapshot_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_vm_snapshot_info_list.py b/intersight/model/hyperflex_vm_snapshot_info_list.py index 900f92bb9e..2d64f360cc 100644 --- a/intersight/model/hyperflex_vm_snapshot_info_list.py +++ b/intersight/model/hyperflex_vm_snapshot_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_vm_snapshot_info_list_all_of.py b/intersight/model/hyperflex_vm_snapshot_info_list_all_of.py index c649b8d2a7..33da085e36 100644 --- a/intersight/model/hyperflex_vm_snapshot_info_list_all_of.py +++ b/intersight/model/hyperflex_vm_snapshot_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_vm_snapshot_info_relationship.py b/intersight/model/hyperflex_vm_snapshot_info_relationship.py index 83911da47f..bd9f8e628d 100644 --- a/intersight/model/hyperflex_vm_snapshot_info_relationship.py +++ b/intersight/model/hyperflex_vm_snapshot_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 """ @@ -105,6 +105,8 @@ class HyperflexVmSnapshotInfoRelationship(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 HyperflexVmSnapshotInfoRelationship(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 HyperflexVmSnapshotInfoRelationship(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 HyperflexVmSnapshotInfoRelationship(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 HyperflexVmSnapshotInfoRelationship(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 HyperflexVmSnapshotInfoRelationship(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 HyperflexVmSnapshotInfoRelationship(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 HyperflexVmSnapshotInfoRelationship(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 HyperflexVmSnapshotInfoRelationship(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 HyperflexVmSnapshotInfoRelationship(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_vm_snapshot_info_response.py b/intersight/model/hyperflex_vm_snapshot_info_response.py index 7a26693c95..906a5298c1 100644 --- a/intersight/model/hyperflex_vm_snapshot_info_response.py +++ b/intersight/model/hyperflex_vm_snapshot_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_volume.py b/intersight/model/hyperflex_volume.py index 4c9254d0ed..6a54a73a4f 100644 --- a/intersight/model/hyperflex_volume.py +++ b/intersight/model/hyperflex_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/hyperflex_volume_all_of.py b/intersight/model/hyperflex_volume_all_of.py index ad85e43e5f..e862c06d54 100644 --- a/intersight/model/hyperflex_volume_all_of.py +++ b/intersight/model/hyperflex_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/hyperflex_volume_list.py b/intersight/model/hyperflex_volume_list.py index de0774b36f..cb45b6719a 100644 --- a/intersight/model/hyperflex_volume_list.py +++ b/intersight/model/hyperflex_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/hyperflex_volume_list_all_of.py b/intersight/model/hyperflex_volume_list_all_of.py index 4e792053d1..d75c09ecee 100644 --- a/intersight/model/hyperflex_volume_list_all_of.py +++ b/intersight/model/hyperflex_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/hyperflex_volume_relationship.py b/intersight/model/hyperflex_volume_relationship.py index 26a6e8cf76..732e451d3e 100644 --- a/intersight/model/hyperflex_volume_relationship.py +++ b/intersight/model/hyperflex_volume_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 HyperflexVolumeRelationship(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 HyperflexVolumeRelationship(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 HyperflexVolumeRelationship(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 HyperflexVolumeRelationship(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 HyperflexVolumeRelationship(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 HyperflexVolumeRelationship(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 HyperflexVolumeRelationship(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 HyperflexVolumeRelationship(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 HyperflexVolumeRelationship(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 HyperflexVolumeRelationship(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_volume_response.py b/intersight/model/hyperflex_volume_response.py index 04d2cc879c..c946da69d1 100644 --- a/intersight/model/hyperflex_volume_response.py +++ b/intersight/model/hyperflex_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/hyperflex_witness_configuration.py b/intersight/model/hyperflex_witness_configuration.py index d8a08d429d..22708a7988 100644 --- a/intersight/model/hyperflex_witness_configuration.py +++ b/intersight/model/hyperflex_witness_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/hyperflex_witness_configuration_all_of.py b/intersight/model/hyperflex_witness_configuration_all_of.py index f68fcabee7..8db362f670 100644 --- a/intersight/model/hyperflex_witness_configuration_all_of.py +++ b/intersight/model/hyperflex_witness_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/hyperflex_witness_configuration_list.py b/intersight/model/hyperflex_witness_configuration_list.py index 734b8cd5c2..4508aa5401 100644 --- a/intersight/model/hyperflex_witness_configuration_list.py +++ b/intersight/model/hyperflex_witness_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/hyperflex_witness_configuration_list_all_of.py b/intersight/model/hyperflex_witness_configuration_list_all_of.py index 8280672850..d70ed02fff 100644 --- a/intersight/model/hyperflex_witness_configuration_list_all_of.py +++ b/intersight/model/hyperflex_witness_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/hyperflex_witness_configuration_response.py b/intersight/model/hyperflex_witness_configuration_response.py index ba29288485..88a60099d1 100644 --- a/intersight/model/hyperflex_witness_configuration_response.py +++ b/intersight/model/hyperflex_witness_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/hyperflex_wwxn_prefix_range.py b/intersight/model/hyperflex_wwxn_prefix_range.py index c1651aaa64..e55e474157 100644 --- a/intersight/model/hyperflex_wwxn_prefix_range.py +++ b/intersight/model/hyperflex_wwxn_prefix_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/hyperflex_wwxn_prefix_range_all_of.py b/intersight/model/hyperflex_wwxn_prefix_range_all_of.py index 8aa65c2a3a..6b4d569940 100644 --- a/intersight/model/hyperflex_wwxn_prefix_range_all_of.py +++ b/intersight/model/hyperflex_wwxn_prefix_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/i18n_message.py b/intersight/model/i18n_message.py index 7a430d2fad..ec2d2873ee 100644 --- a/intersight/model/i18n_message.py +++ b/intersight/model/i18n_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/i18n_message_all_of.py b/intersight/model/i18n_message_all_of.py index 7161e4e748..68de8348dd 100644 --- a/intersight/model/i18n_message_all_of.py +++ b/intersight/model/i18n_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/i18n_message_param.py b/intersight/model/i18n_message_param.py index d7a0f45101..f9dedf393d 100644 --- a/intersight/model/i18n_message_param.py +++ b/intersight/model/i18n_message_param.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/i18n_message_param_all_of.py b/intersight/model/i18n_message_param_all_of.py index 15ebe12d48..0637e37346 100644 --- a/intersight/model/i18n_message_param_all_of.py +++ b/intersight/model/i18n_message_param_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_connector_pack.py b/intersight/model/iaas_connector_pack.py index b353447fab..5aedc88b13 100644 --- a/intersight/model/iaas_connector_pack.py +++ b/intersight/model/iaas_connector_pack.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_connector_pack_all_of.py b/intersight/model/iaas_connector_pack_all_of.py index b60d797c58..26436949fc 100644 --- a/intersight/model/iaas_connector_pack_all_of.py +++ b/intersight/model/iaas_connector_pack_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_connector_pack_list.py b/intersight/model/iaas_connector_pack_list.py index ca16a2a23a..a300b31d22 100644 --- a/intersight/model/iaas_connector_pack_list.py +++ b/intersight/model/iaas_connector_pack_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/iaas_connector_pack_list_all_of.py b/intersight/model/iaas_connector_pack_list_all_of.py index c67b591afc..4a6329da8e 100644 --- a/intersight/model/iaas_connector_pack_list_all_of.py +++ b/intersight/model/iaas_connector_pack_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/iaas_connector_pack_relationship.py b/intersight/model/iaas_connector_pack_relationship.py index 1ed1e20641..5d24f356c2 100644 --- a/intersight/model/iaas_connector_pack_relationship.py +++ b/intersight/model/iaas_connector_pack_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 IaasConnectorPackRelationship(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 IaasConnectorPackRelationship(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 IaasConnectorPackRelationship(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 IaasConnectorPackRelationship(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 IaasConnectorPackRelationship(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 IaasConnectorPackRelationship(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 IaasConnectorPackRelationship(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 IaasConnectorPackRelationship(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 IaasConnectorPackRelationship(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 IaasConnectorPackRelationship(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/iaas_connector_pack_response.py b/intersight/model/iaas_connector_pack_response.py index 2a37e81da1..c45b409b55 100644 --- a/intersight/model/iaas_connector_pack_response.py +++ b/intersight/model/iaas_connector_pack_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/iaas_device_status.py b/intersight/model/iaas_device_status.py index 760360ba34..099299c624 100644 --- a/intersight/model/iaas_device_status.py +++ b/intersight/model/iaas_device_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/iaas_device_status_all_of.py b/intersight/model/iaas_device_status_all_of.py index a99de9aacd..5114200409 100644 --- a/intersight/model/iaas_device_status_all_of.py +++ b/intersight/model/iaas_device_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/iaas_device_status_list.py b/intersight/model/iaas_device_status_list.py index 3d9f8326e0..083001248c 100644 --- a/intersight/model/iaas_device_status_list.py +++ b/intersight/model/iaas_device_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/iaas_device_status_list_all_of.py b/intersight/model/iaas_device_status_list_all_of.py index 7008ff1630..9cfcf9b515 100644 --- a/intersight/model/iaas_device_status_list_all_of.py +++ b/intersight/model/iaas_device_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/iaas_device_status_relationship.py b/intersight/model/iaas_device_status_relationship.py index bc9a38e7c1..53ea23406d 100644 --- a/intersight/model/iaas_device_status_relationship.py +++ b/intersight/model/iaas_device_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 """ @@ -80,6 +80,8 @@ class IaasDeviceStatusRelationship(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 IaasDeviceStatusRelationship(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 IaasDeviceStatusRelationship(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 IaasDeviceStatusRelationship(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 IaasDeviceStatusRelationship(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 IaasDeviceStatusRelationship(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 IaasDeviceStatusRelationship(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 IaasDeviceStatusRelationship(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 IaasDeviceStatusRelationship(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 IaasDeviceStatusRelationship(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/iaas_device_status_response.py b/intersight/model/iaas_device_status_response.py index e4fb6afdd2..4fe1a82f00 100644 --- a/intersight/model/iaas_device_status_response.py +++ b/intersight/model/iaas_device_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/iaas_diagnostic_messages.py b/intersight/model/iaas_diagnostic_messages.py index f8bc30ad1f..6be2f8475b 100644 --- a/intersight/model/iaas_diagnostic_messages.py +++ b/intersight/model/iaas_diagnostic_messages.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_diagnostic_messages_all_of.py b/intersight/model/iaas_diagnostic_messages_all_of.py index 140c670bf6..f915d342bf 100644 --- a/intersight/model/iaas_diagnostic_messages_all_of.py +++ b/intersight/model/iaas_diagnostic_messages_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_diagnostic_messages_list.py b/intersight/model/iaas_diagnostic_messages_list.py index bf89dba7b8..c8b83c4fe5 100644 --- a/intersight/model/iaas_diagnostic_messages_list.py +++ b/intersight/model/iaas_diagnostic_messages_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/iaas_diagnostic_messages_list_all_of.py b/intersight/model/iaas_diagnostic_messages_list_all_of.py index 7bd72a9a06..a016a3d132 100644 --- a/intersight/model/iaas_diagnostic_messages_list_all_of.py +++ b/intersight/model/iaas_diagnostic_messages_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/iaas_diagnostic_messages_response.py b/intersight/model/iaas_diagnostic_messages_response.py index 9adba4a8f9..30b448825d 100644 --- a/intersight/model/iaas_diagnostic_messages_response.py +++ b/intersight/model/iaas_diagnostic_messages_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/iaas_license_info.py b/intersight/model/iaas_license_info.py index 0a99d95428..c9df204999 100644 --- a/intersight/model/iaas_license_info.py +++ b/intersight/model/iaas_license_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/iaas_license_info_all_of.py b/intersight/model/iaas_license_info_all_of.py index a6b2fbb091..9487aaa3a9 100644 --- a/intersight/model/iaas_license_info_all_of.py +++ b/intersight/model/iaas_license_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/iaas_license_info_list.py b/intersight/model/iaas_license_info_list.py index 7ae361ab95..c1c497d192 100644 --- a/intersight/model/iaas_license_info_list.py +++ b/intersight/model/iaas_license_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/iaas_license_info_list_all_of.py b/intersight/model/iaas_license_info_list_all_of.py index 597f6ca5a9..3767659e87 100644 --- a/intersight/model/iaas_license_info_list_all_of.py +++ b/intersight/model/iaas_license_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/iaas_license_info_relationship.py b/intersight/model/iaas_license_info_relationship.py index e94492bde2..a125331b72 100644 --- a/intersight/model/iaas_license_info_relationship.py +++ b/intersight/model/iaas_license_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 """ @@ -78,6 +78,8 @@ class IaasLicenseInfoRelationship(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 IaasLicenseInfoRelationship(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 IaasLicenseInfoRelationship(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 IaasLicenseInfoRelationship(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 IaasLicenseInfoRelationship(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 IaasLicenseInfoRelationship(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 IaasLicenseInfoRelationship(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 IaasLicenseInfoRelationship(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 IaasLicenseInfoRelationship(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 IaasLicenseInfoRelationship(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/iaas_license_info_response.py b/intersight/model/iaas_license_info_response.py index 2352f8059e..9dde0be2b7 100644 --- a/intersight/model/iaas_license_info_response.py +++ b/intersight/model/iaas_license_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/iaas_license_keys_info.py b/intersight/model/iaas_license_keys_info.py index 77ee6dfbc7..e40dc2ade5 100644 --- a/intersight/model/iaas_license_keys_info.py +++ b/intersight/model/iaas_license_keys_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/iaas_license_keys_info_all_of.py b/intersight/model/iaas_license_keys_info_all_of.py index 3f773e96ac..ebf9edcfc2 100644 --- a/intersight/model/iaas_license_keys_info_all_of.py +++ b/intersight/model/iaas_license_keys_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/iaas_license_utilization_info.py b/intersight/model/iaas_license_utilization_info.py index a1066b4712..b4185c0606 100644 --- a/intersight/model/iaas_license_utilization_info.py +++ b/intersight/model/iaas_license_utilization_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/iaas_license_utilization_info_all_of.py b/intersight/model/iaas_license_utilization_info_all_of.py index df8a17a322..c8c03f988f 100644 --- a/intersight/model/iaas_license_utilization_info_all_of.py +++ b/intersight/model/iaas_license_utilization_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/iaas_most_run_tasks.py b/intersight/model/iaas_most_run_tasks.py index e2ebd046c2..e44d7bba35 100644 --- a/intersight/model/iaas_most_run_tasks.py +++ b/intersight/model/iaas_most_run_tasks.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_most_run_tasks_all_of.py b/intersight/model/iaas_most_run_tasks_all_of.py index ad5dffd53c..40afad379a 100644 --- a/intersight/model/iaas_most_run_tasks_all_of.py +++ b/intersight/model/iaas_most_run_tasks_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_most_run_tasks_list.py b/intersight/model/iaas_most_run_tasks_list.py index 549ea5299e..5ebeb1cbde 100644 --- a/intersight/model/iaas_most_run_tasks_list.py +++ b/intersight/model/iaas_most_run_tasks_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/iaas_most_run_tasks_list_all_of.py b/intersight/model/iaas_most_run_tasks_list_all_of.py index 04d583317d..a7121c15cb 100644 --- a/intersight/model/iaas_most_run_tasks_list_all_of.py +++ b/intersight/model/iaas_most_run_tasks_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/iaas_most_run_tasks_relationship.py b/intersight/model/iaas_most_run_tasks_relationship.py index 9f5bc4b3eb..35555f0b39 100644 --- a/intersight/model/iaas_most_run_tasks_relationship.py +++ b/intersight/model/iaas_most_run_tasks_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 IaasMostRunTasksRelationship(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 IaasMostRunTasksRelationship(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 IaasMostRunTasksRelationship(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 IaasMostRunTasksRelationship(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 IaasMostRunTasksRelationship(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 IaasMostRunTasksRelationship(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 IaasMostRunTasksRelationship(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 IaasMostRunTasksRelationship(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 IaasMostRunTasksRelationship(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 IaasMostRunTasksRelationship(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/iaas_most_run_tasks_response.py b/intersight/model/iaas_most_run_tasks_response.py index ab822c4629..c32afc565a 100644 --- a/intersight/model/iaas_most_run_tasks_response.py +++ b/intersight/model/iaas_most_run_tasks_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/iaas_service_request.py b/intersight/model/iaas_service_request.py index 728490b6a2..e23c8fe280 100644 --- a/intersight/model/iaas_service_request.py +++ b/intersight/model/iaas_service_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/iaas_service_request_all_of.py b/intersight/model/iaas_service_request_all_of.py index 903aa506da..971afb5df1 100644 --- a/intersight/model/iaas_service_request_all_of.py +++ b/intersight/model/iaas_service_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/iaas_service_request_list.py b/intersight/model/iaas_service_request_list.py index 121a9630a4..8439982c23 100644 --- a/intersight/model/iaas_service_request_list.py +++ b/intersight/model/iaas_service_request_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/iaas_service_request_list_all_of.py b/intersight/model/iaas_service_request_list_all_of.py index c86588cf29..30b96c7d94 100644 --- a/intersight/model/iaas_service_request_list_all_of.py +++ b/intersight/model/iaas_service_request_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/iaas_service_request_response.py b/intersight/model/iaas_service_request_response.py index b212b97dd0..13224f2358 100644 --- a/intersight/model/iaas_service_request_response.py +++ b/intersight/model/iaas_service_request_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/iaas_ucsd_info.py b/intersight/model/iaas_ucsd_info.py index 2936f792e5..49da5eb688 100644 --- a/intersight/model/iaas_ucsd_info.py +++ b/intersight/model/iaas_ucsd_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/iaas_ucsd_info_all_of.py b/intersight/model/iaas_ucsd_info_all_of.py index 7659682c55..f55e316d1c 100644 --- a/intersight/model/iaas_ucsd_info_all_of.py +++ b/intersight/model/iaas_ucsd_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/iaas_ucsd_info_list.py b/intersight/model/iaas_ucsd_info_list.py index 0e85a0e651..c168eda1e2 100644 --- a/intersight/model/iaas_ucsd_info_list.py +++ b/intersight/model/iaas_ucsd_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/iaas_ucsd_info_list_all_of.py b/intersight/model/iaas_ucsd_info_list_all_of.py index ecf75f7ee2..3ae6622337 100644 --- a/intersight/model/iaas_ucsd_info_list_all_of.py +++ b/intersight/model/iaas_ucsd_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/iaas_ucsd_info_relationship.py b/intersight/model/iaas_ucsd_info_relationship.py index 3761495238..0ab469e0bc 100644 --- a/intersight/model/iaas_ucsd_info_relationship.py +++ b/intersight/model/iaas_ucsd_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 """ @@ -84,6 +84,8 @@ class IaasUcsdInfoRelationship(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 IaasUcsdInfoRelationship(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 IaasUcsdInfoRelationship(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 IaasUcsdInfoRelationship(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 IaasUcsdInfoRelationship(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 IaasUcsdInfoRelationship(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 IaasUcsdInfoRelationship(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 IaasUcsdInfoRelationship(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 IaasUcsdInfoRelationship(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 IaasUcsdInfoRelationship(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/iaas_ucsd_info_response.py b/intersight/model/iaas_ucsd_info_response.py index 1b48a95391..8bf0044013 100644 --- a/intersight/model/iaas_ucsd_info_response.py +++ b/intersight/model/iaas_ucsd_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/iaas_ucsd_managed_infra.py b/intersight/model/iaas_ucsd_managed_infra.py index ed8c1a42fd..33f50b14fb 100644 --- a/intersight/model/iaas_ucsd_managed_infra.py +++ b/intersight/model/iaas_ucsd_managed_infra.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_ucsd_managed_infra_all_of.py b/intersight/model/iaas_ucsd_managed_infra_all_of.py index 810547b726..59b1d931e8 100644 --- a/intersight/model/iaas_ucsd_managed_infra_all_of.py +++ b/intersight/model/iaas_ucsd_managed_infra_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_ucsd_managed_infra_list.py b/intersight/model/iaas_ucsd_managed_infra_list.py index 9d2f604c01..c2605286c3 100644 --- a/intersight/model/iaas_ucsd_managed_infra_list.py +++ b/intersight/model/iaas_ucsd_managed_infra_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/iaas_ucsd_managed_infra_list_all_of.py b/intersight/model/iaas_ucsd_managed_infra_list_all_of.py index 498e05bb8e..86d98067fe 100644 --- a/intersight/model/iaas_ucsd_managed_infra_list_all_of.py +++ b/intersight/model/iaas_ucsd_managed_infra_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/iaas_ucsd_managed_infra_relationship.py b/intersight/model/iaas_ucsd_managed_infra_relationship.py index 25e2964901..55b52e90d5 100644 --- a/intersight/model/iaas_ucsd_managed_infra_relationship.py +++ b/intersight/model/iaas_ucsd_managed_infra_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 IaasUcsdManagedInfraRelationship(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 IaasUcsdManagedInfraRelationship(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 IaasUcsdManagedInfraRelationship(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 IaasUcsdManagedInfraRelationship(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 IaasUcsdManagedInfraRelationship(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 IaasUcsdManagedInfraRelationship(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 IaasUcsdManagedInfraRelationship(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 IaasUcsdManagedInfraRelationship(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 IaasUcsdManagedInfraRelationship(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 IaasUcsdManagedInfraRelationship(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/iaas_ucsd_managed_infra_response.py b/intersight/model/iaas_ucsd_managed_infra_response.py index 558fef1557..ce7c24ee43 100644 --- a/intersight/model/iaas_ucsd_managed_infra_response.py +++ b/intersight/model/iaas_ucsd_managed_infra_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/iaas_ucsd_messages.py b/intersight/model/iaas_ucsd_messages.py index 039a67d366..2d216d88e7 100644 --- a/intersight/model/iaas_ucsd_messages.py +++ b/intersight/model/iaas_ucsd_messages.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_ucsd_messages_all_of.py b/intersight/model/iaas_ucsd_messages_all_of.py index 901f72686d..03d069cf7e 100644 --- a/intersight/model/iaas_ucsd_messages_all_of.py +++ b/intersight/model/iaas_ucsd_messages_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_ucsd_messages_list.py b/intersight/model/iaas_ucsd_messages_list.py index 55d853558c..c93f51245a 100644 --- a/intersight/model/iaas_ucsd_messages_list.py +++ b/intersight/model/iaas_ucsd_messages_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/iaas_ucsd_messages_list_all_of.py b/intersight/model/iaas_ucsd_messages_list_all_of.py index efe2024997..db520bdd7f 100644 --- a/intersight/model/iaas_ucsd_messages_list_all_of.py +++ b/intersight/model/iaas_ucsd_messages_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/iaas_ucsd_messages_response.py b/intersight/model/iaas_ucsd_messages_response.py index 1cd279adc5..6185ab919e 100644 --- a/intersight/model/iaas_ucsd_messages_response.py +++ b/intersight/model/iaas_ucsd_messages_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/iaas_workflow_steps.py b/intersight/model/iaas_workflow_steps.py index 8add1fab09..14d11fa91d 100644 --- a/intersight/model/iaas_workflow_steps.py +++ b/intersight/model/iaas_workflow_steps.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iaas_workflow_steps_all_of.py b/intersight/model/iaas_workflow_steps_all_of.py index 608f6f8435..31d7582524 100644 --- a/intersight/model/iaas_workflow_steps_all_of.py +++ b/intersight/model/iaas_workflow_steps_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_account.py b/intersight/model/iam_account.py index 3c0eafc390..b3ef67cfab 100644 --- a/intersight/model/iam_account.py +++ b/intersight/model/iam_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/iam_account_all_of.py b/intersight/model/iam_account_all_of.py index ba3ddf32a8..3eaf013e03 100644 --- a/intersight/model/iam_account_all_of.py +++ b/intersight/model/iam_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/iam_account_experience.py b/intersight/model/iam_account_experience.py index 8c6385c167..3676829fb1 100644 --- a/intersight/model/iam_account_experience.py +++ b/intersight/model/iam_account_experience.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_account_experience_all_of.py b/intersight/model/iam_account_experience_all_of.py index 0ff9bf0f73..9b8434afa4 100644 --- a/intersight/model/iam_account_experience_all_of.py +++ b/intersight/model/iam_account_experience_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_account_experience_list.py b/intersight/model/iam_account_experience_list.py index dbee3bb0b4..c55792892e 100644 --- a/intersight/model/iam_account_experience_list.py +++ b/intersight/model/iam_account_experience_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/iam_account_experience_list_all_of.py b/intersight/model/iam_account_experience_list_all_of.py index ba920d53d3..4880ff706c 100644 --- a/intersight/model/iam_account_experience_list_all_of.py +++ b/intersight/model/iam_account_experience_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/iam_account_experience_response.py b/intersight/model/iam_account_experience_response.py index b1c97af0ec..4da15849b1 100644 --- a/intersight/model/iam_account_experience_response.py +++ b/intersight/model/iam_account_experience_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/iam_account_list.py b/intersight/model/iam_account_list.py index b906f8a6ec..a9ba5054f2 100644 --- a/intersight/model/iam_account_list.py +++ b/intersight/model/iam_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/iam_account_list_all_of.py b/intersight/model/iam_account_list_all_of.py index 4109447ba4..f4bf730cb2 100644 --- a/intersight/model/iam_account_list_all_of.py +++ b/intersight/model/iam_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/iam_account_permissions.py b/intersight/model/iam_account_permissions.py index 39df371883..920674d4eb 100644 --- a/intersight/model/iam_account_permissions.py +++ b/intersight/model/iam_account_permissions.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_account_permissions_all_of.py b/intersight/model/iam_account_permissions_all_of.py index e46d2ce5e6..2e4ee921be 100644 --- a/intersight/model/iam_account_permissions_all_of.py +++ b/intersight/model/iam_account_permissions_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_account_relationship.py b/intersight/model/iam_account_relationship.py index ae006d882e..c5cc2428bc 100644 --- a/intersight/model/iam_account_relationship.py +++ b/intersight/model/iam_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 """ @@ -96,6 +96,8 @@ class IamAccountRelationship(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", @@ -112,6 +114,7 @@ class IamAccountRelationship(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", @@ -160,9 +163,12 @@ class IamAccountRelationship(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", @@ -226,10 +232,6 @@ class IamAccountRelationship(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", @@ -238,6 +240,7 @@ class IamAccountRelationship(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", @@ -486,6 +489,7 @@ class IamAccountRelationship(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", @@ -655,6 +659,11 @@ class IamAccountRelationship(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", @@ -770,6 +779,7 @@ class IamAccountRelationship(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", @@ -801,6 +811,7 @@ class IamAccountRelationship(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", @@ -833,12 +844,14 @@ class IamAccountRelationship(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/iam_account_response.py b/intersight/model/iam_account_response.py index 0c7d93c8b3..64e3470ad7 100644 --- a/intersight/model/iam_account_response.py +++ b/intersight/model/iam_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/iam_api_key.py b/intersight/model/iam_api_key.py index 4100693d79..aa35110161 100644 --- a/intersight/model/iam_api_key.py +++ b/intersight/model/iam_api_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/iam_api_key_all_of.py b/intersight/model/iam_api_key_all_of.py index f831bcf0b1..30307137d4 100644 --- a/intersight/model/iam_api_key_all_of.py +++ b/intersight/model/iam_api_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/iam_api_key_list.py b/intersight/model/iam_api_key_list.py index 00b726a2ce..89f1d01cec 100644 --- a/intersight/model/iam_api_key_list.py +++ b/intersight/model/iam_api_key_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/iam_api_key_list_all_of.py b/intersight/model/iam_api_key_list_all_of.py index d428dc4b9c..42a34c0822 100644 --- a/intersight/model/iam_api_key_list_all_of.py +++ b/intersight/model/iam_api_key_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/iam_api_key_relationship.py b/intersight/model/iam_api_key_relationship.py index 610a036c57..694130ac17 100644 --- a/intersight/model/iam_api_key_relationship.py +++ b/intersight/model/iam_api_key_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 IamApiKeyRelationship(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 IamApiKeyRelationship(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 IamApiKeyRelationship(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 IamApiKeyRelationship(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 IamApiKeyRelationship(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 IamApiKeyRelationship(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 IamApiKeyRelationship(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 IamApiKeyRelationship(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 IamApiKeyRelationship(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 IamApiKeyRelationship(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/iam_api_key_response.py b/intersight/model/iam_api_key_response.py index a95e20363e..40f148b5cd 100644 --- a/intersight/model/iam_api_key_response.py +++ b/intersight/model/iam_api_key_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/iam_app_registration.py b/intersight/model/iam_app_registration.py index 6b3be2840f..c053ff7cce 100644 --- a/intersight/model/iam_app_registration.py +++ b/intersight/model/iam_app_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/iam_app_registration_all_of.py b/intersight/model/iam_app_registration_all_of.py index f20e487542..f0b90ddebc 100644 --- a/intersight/model/iam_app_registration_all_of.py +++ b/intersight/model/iam_app_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/iam_app_registration_list.py b/intersight/model/iam_app_registration_list.py index fdc0791cf6..834d2d8dee 100644 --- a/intersight/model/iam_app_registration_list.py +++ b/intersight/model/iam_app_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/iam_app_registration_list_all_of.py b/intersight/model/iam_app_registration_list_all_of.py index 9916eed83f..47b31ecb7f 100644 --- a/intersight/model/iam_app_registration_list_all_of.py +++ b/intersight/model/iam_app_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/iam_app_registration_relationship.py b/intersight/model/iam_app_registration_relationship.py index 54fc38f703..7e07da11cf 100644 --- a/intersight/model/iam_app_registration_relationship.py +++ b/intersight/model/iam_app_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 """ @@ -101,6 +101,8 @@ class IamAppRegistrationRelationship(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", @@ -117,6 +119,7 @@ class IamAppRegistrationRelationship(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", @@ -165,9 +168,12 @@ class IamAppRegistrationRelationship(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", @@ -231,10 +237,6 @@ class IamAppRegistrationRelationship(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", @@ -243,6 +245,7 @@ class IamAppRegistrationRelationship(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", @@ -491,6 +494,7 @@ class IamAppRegistrationRelationship(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", @@ -660,6 +664,11 @@ class IamAppRegistrationRelationship(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", @@ -775,6 +784,7 @@ class IamAppRegistrationRelationship(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", @@ -806,6 +816,7 @@ class IamAppRegistrationRelationship(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", @@ -838,12 +849,14 @@ class IamAppRegistrationRelationship(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/iam_app_registration_response.py b/intersight/model/iam_app_registration_response.py index 0ca99ef024..fdcf271c51 100644 --- a/intersight/model/iam_app_registration_response.py +++ b/intersight/model/iam_app_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/iam_banner_message.py b/intersight/model/iam_banner_message.py index 0344c7ef1a..61606708b0 100644 --- a/intersight/model/iam_banner_message.py +++ b/intersight/model/iam_banner_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/iam_banner_message_all_of.py b/intersight/model/iam_banner_message_all_of.py index 8f88ac40bd..4a7718d9bd 100644 --- a/intersight/model/iam_banner_message_all_of.py +++ b/intersight/model/iam_banner_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/iam_banner_message_list.py b/intersight/model/iam_banner_message_list.py index 4152872dec..7f609a1c07 100644 --- a/intersight/model/iam_banner_message_list.py +++ b/intersight/model/iam_banner_message_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/iam_banner_message_list_all_of.py b/intersight/model/iam_banner_message_list_all_of.py index aa8cc82d35..6038dc5b5d 100644 --- a/intersight/model/iam_banner_message_list_all_of.py +++ b/intersight/model/iam_banner_message_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/iam_banner_message_response.py b/intersight/model/iam_banner_message_response.py index 4b2bfde3dc..69038068f1 100644 --- a/intersight/model/iam_banner_message_response.py +++ b/intersight/model/iam_banner_message_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/iam_certificate.py b/intersight/model/iam_certificate.py index dda009685d..46d477e7fd 100644 --- a/intersight/model/iam_certificate.py +++ b/intersight/model/iam_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/iam_certificate_all_of.py b/intersight/model/iam_certificate_all_of.py index 32887f4c71..47c3128093 100644 --- a/intersight/model/iam_certificate_all_of.py +++ b/intersight/model/iam_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/iam_certificate_list.py b/intersight/model/iam_certificate_list.py index 9fb39a40da..dc1cead64c 100644 --- a/intersight/model/iam_certificate_list.py +++ b/intersight/model/iam_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/iam_certificate_list_all_of.py b/intersight/model/iam_certificate_list_all_of.py index 4b08e69873..7d64f7330f 100644 --- a/intersight/model/iam_certificate_list_all_of.py +++ b/intersight/model/iam_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/iam_certificate_relationship.py b/intersight/model/iam_certificate_relationship.py index f12326cba2..367917adc5 100644 --- a/intersight/model/iam_certificate_relationship.py +++ b/intersight/model/iam_certificate_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 IamCertificateRelationship(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 IamCertificateRelationship(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 IamCertificateRelationship(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 IamCertificateRelationship(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 IamCertificateRelationship(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 IamCertificateRelationship(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 IamCertificateRelationship(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 IamCertificateRelationship(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 IamCertificateRelationship(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 IamCertificateRelationship(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/iam_certificate_request.py b/intersight/model/iam_certificate_request.py index 07e1adce10..5673755cf3 100644 --- a/intersight/model/iam_certificate_request.py +++ b/intersight/model/iam_certificate_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/iam_certificate_request_all_of.py b/intersight/model/iam_certificate_request_all_of.py index 68a8a63548..dda849a4f5 100644 --- a/intersight/model/iam_certificate_request_all_of.py +++ b/intersight/model/iam_certificate_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/iam_certificate_request_list.py b/intersight/model/iam_certificate_request_list.py index 6481e7fea6..593500f5b8 100644 --- a/intersight/model/iam_certificate_request_list.py +++ b/intersight/model/iam_certificate_request_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/iam_certificate_request_list_all_of.py b/intersight/model/iam_certificate_request_list_all_of.py index c2c576c51a..ca88835c98 100644 --- a/intersight/model/iam_certificate_request_list_all_of.py +++ b/intersight/model/iam_certificate_request_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/iam_certificate_request_relationship.py b/intersight/model/iam_certificate_request_relationship.py index 3f616bd8d3..31ad7267dd 100644 --- a/intersight/model/iam_certificate_request_relationship.py +++ b/intersight/model/iam_certificate_request_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 IamCertificateRequestRelationship(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 IamCertificateRequestRelationship(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 IamCertificateRequestRelationship(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 IamCertificateRequestRelationship(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 IamCertificateRequestRelationship(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 IamCertificateRequestRelationship(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 IamCertificateRequestRelationship(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 IamCertificateRequestRelationship(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 IamCertificateRequestRelationship(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 IamCertificateRequestRelationship(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/iam_certificate_request_response.py b/intersight/model/iam_certificate_request_response.py index a7ea13815c..7989bb54f8 100644 --- a/intersight/model/iam_certificate_request_response.py +++ b/intersight/model/iam_certificate_request_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/iam_certificate_response.py b/intersight/model/iam_certificate_response.py index a04549a613..3f49bbf5fc 100644 --- a/intersight/model/iam_certificate_response.py +++ b/intersight/model/iam_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/iam_client_meta.py b/intersight/model/iam_client_meta.py index 7ae25837ae..3132e571b1 100644 --- a/intersight/model/iam_client_meta.py +++ b/intersight/model/iam_client_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/iam_client_meta_all_of.py b/intersight/model/iam_client_meta_all_of.py index 7cefb8be23..214840c50c 100644 --- a/intersight/model/iam_client_meta_all_of.py +++ b/intersight/model/iam_client_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/iam_domain_group.py b/intersight/model/iam_domain_group.py index 79bbb34f53..51a2d57b40 100644 --- a/intersight/model/iam_domain_group.py +++ b/intersight/model/iam_domain_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/iam_domain_group_all_of.py b/intersight/model/iam_domain_group_all_of.py index 7de4c2047d..9c60e008d9 100644 --- a/intersight/model/iam_domain_group_all_of.py +++ b/intersight/model/iam_domain_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/iam_domain_group_list.py b/intersight/model/iam_domain_group_list.py index 49123a7a58..c3a0925236 100644 --- a/intersight/model/iam_domain_group_list.py +++ b/intersight/model/iam_domain_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/iam_domain_group_list_all_of.py b/intersight/model/iam_domain_group_list_all_of.py index f5d3975c8f..81d5c6ffd1 100644 --- a/intersight/model/iam_domain_group_list_all_of.py +++ b/intersight/model/iam_domain_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/iam_domain_group_relationship.py b/intersight/model/iam_domain_group_relationship.py index 2d54dc80ca..ffeda9aabd 100644 --- a/intersight/model/iam_domain_group_relationship.py +++ b/intersight/model/iam_domain_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 """ @@ -74,6 +74,8 @@ class IamDomainGroupRelationship(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 IamDomainGroupRelationship(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 IamDomainGroupRelationship(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 IamDomainGroupRelationship(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 IamDomainGroupRelationship(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 IamDomainGroupRelationship(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 IamDomainGroupRelationship(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 IamDomainGroupRelationship(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 IamDomainGroupRelationship(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 IamDomainGroupRelationship(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/iam_domain_group_response.py b/intersight/model/iam_domain_group_response.py index a35d1fc480..3fb5417997 100644 --- a/intersight/model/iam_domain_group_response.py +++ b/intersight/model/iam_domain_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/iam_end_point_password_properties.py b/intersight/model/iam_end_point_password_properties.py index b2e14b0c4d..8c235d1ac1 100644 --- a/intersight/model/iam_end_point_password_properties.py +++ b/intersight/model/iam_end_point_password_properties.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_end_point_password_properties_all_of.py b/intersight/model/iam_end_point_password_properties_all_of.py index bcea05aa1b..d142396d8e 100644 --- a/intersight/model/iam_end_point_password_properties_all_of.py +++ b/intersight/model/iam_end_point_password_properties_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_end_point_privilege.py b/intersight/model/iam_end_point_privilege.py index 0a76908688..8bb1d72202 100644 --- a/intersight/model/iam_end_point_privilege.py +++ b/intersight/model/iam_end_point_privilege.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_end_point_privilege_all_of.py b/intersight/model/iam_end_point_privilege_all_of.py index 77d61ac51c..046bda40cf 100644 --- a/intersight/model/iam_end_point_privilege_all_of.py +++ b/intersight/model/iam_end_point_privilege_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_end_point_privilege_list.py b/intersight/model/iam_end_point_privilege_list.py index 25031ca5bd..343a0b369b 100644 --- a/intersight/model/iam_end_point_privilege_list.py +++ b/intersight/model/iam_end_point_privilege_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/iam_end_point_privilege_list_all_of.py b/intersight/model/iam_end_point_privilege_list_all_of.py index 9c3083146a..8a8da577ba 100644 --- a/intersight/model/iam_end_point_privilege_list_all_of.py +++ b/intersight/model/iam_end_point_privilege_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/iam_end_point_privilege_relationship.py b/intersight/model/iam_end_point_privilege_relationship.py index dbf6deba3e..e5c4938262 100644 --- a/intersight/model/iam_end_point_privilege_relationship.py +++ b/intersight/model/iam_end_point_privilege_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 """ @@ -126,6 +126,8 @@ class IamEndPointPrivilegeRelationship(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", @@ -142,6 +144,7 @@ class IamEndPointPrivilegeRelationship(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", @@ -190,9 +193,12 @@ class IamEndPointPrivilegeRelationship(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", @@ -256,10 +262,6 @@ class IamEndPointPrivilegeRelationship(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", @@ -268,6 +270,7 @@ class IamEndPointPrivilegeRelationship(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", @@ -516,6 +519,7 @@ class IamEndPointPrivilegeRelationship(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", @@ -685,6 +689,11 @@ class IamEndPointPrivilegeRelationship(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", @@ -800,6 +809,7 @@ class IamEndPointPrivilegeRelationship(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", @@ -831,6 +841,7 @@ class IamEndPointPrivilegeRelationship(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", @@ -863,12 +874,14 @@ class IamEndPointPrivilegeRelationship(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/iam_end_point_privilege_response.py b/intersight/model/iam_end_point_privilege_response.py index c211ea0d2b..9e44812650 100644 --- a/intersight/model/iam_end_point_privilege_response.py +++ b/intersight/model/iam_end_point_privilege_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/iam_end_point_role.py b/intersight/model/iam_end_point_role.py index 72c14ffc1f..56b4e9e96c 100644 --- a/intersight/model/iam_end_point_role.py +++ b/intersight/model/iam_end_point_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/iam_end_point_role_all_of.py b/intersight/model/iam_end_point_role_all_of.py index 54ac0789ee..655c3b3c34 100644 --- a/intersight/model/iam_end_point_role_all_of.py +++ b/intersight/model/iam_end_point_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/iam_end_point_role_list.py b/intersight/model/iam_end_point_role_list.py index 7539cb47d9..c69427756a 100644 --- a/intersight/model/iam_end_point_role_list.py +++ b/intersight/model/iam_end_point_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/iam_end_point_role_list_all_of.py b/intersight/model/iam_end_point_role_list_all_of.py index eb1add325b..fa6127bf38 100644 --- a/intersight/model/iam_end_point_role_list_all_of.py +++ b/intersight/model/iam_end_point_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/iam_end_point_role_relationship.py b/intersight/model/iam_end_point_role_relationship.py index 539164cd45..2766f50e21 100644 --- a/intersight/model/iam_end_point_role_relationship.py +++ b/intersight/model/iam_end_point_role_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 IamEndPointRoleRelationship(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", @@ -146,6 +148,7 @@ class IamEndPointRoleRelationship(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", @@ -194,9 +197,12 @@ class IamEndPointRoleRelationship(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", @@ -260,10 +266,6 @@ class IamEndPointRoleRelationship(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", @@ -272,6 +274,7 @@ class IamEndPointRoleRelationship(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", @@ -520,6 +523,7 @@ class IamEndPointRoleRelationship(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", @@ -689,6 +693,11 @@ class IamEndPointRoleRelationship(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", @@ -804,6 +813,7 @@ class IamEndPointRoleRelationship(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", @@ -835,6 +845,7 @@ class IamEndPointRoleRelationship(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", @@ -867,12 +878,14 @@ class IamEndPointRoleRelationship(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/iam_end_point_role_response.py b/intersight/model/iam_end_point_role_response.py index 5976898325..515131b40f 100644 --- a/intersight/model/iam_end_point_role_response.py +++ b/intersight/model/iam_end_point_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/iam_end_point_user.py b/intersight/model/iam_end_point_user.py index 5205d590fb..59dad798d3 100644 --- a/intersight/model/iam_end_point_user.py +++ b/intersight/model/iam_end_point_user.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_end_point_user_all_of.py b/intersight/model/iam_end_point_user_all_of.py index 4d1bf89def..38f4ec4d79 100644 --- a/intersight/model/iam_end_point_user_all_of.py +++ b/intersight/model/iam_end_point_user_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_end_point_user_list.py b/intersight/model/iam_end_point_user_list.py index c1ac66346b..73bdc91d83 100644 --- a/intersight/model/iam_end_point_user_list.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_list_all_of.py b/intersight/model/iam_end_point_user_list_all_of.py index a23e3cc198..c752584d79 100644 --- a/intersight/model/iam_end_point_user_list_all_of.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_policy.py b/intersight/model/iam_end_point_user_policy.py index 3f2b17cd7d..d57a9b27b6 100644 --- a/intersight/model/iam_end_point_user_policy.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_policy_all_of.py b/intersight/model/iam_end_point_user_policy_all_of.py index 436930db46..6b84cb6a6e 100644 --- a/intersight/model/iam_end_point_user_policy_all_of.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_policy_list.py b/intersight/model/iam_end_point_user_policy_list.py index fd28a3a6f3..bc42323cfd 100644 --- a/intersight/model/iam_end_point_user_policy_list.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_policy_list_all_of.py b/intersight/model/iam_end_point_user_policy_list_all_of.py index 11cb778ee7..8a7d9a5886 100644 --- a/intersight/model/iam_end_point_user_policy_list_all_of.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_policy_relationship.py b/intersight/model/iam_end_point_user_policy_relationship.py index ee49626154..40cafb80f9 100644 --- a/intersight/model/iam_end_point_user_policy_relationship.py +++ b/intersight/model/iam_end_point_user_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 """ @@ -80,6 +80,8 @@ class IamEndPointUserPolicyRelationship(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 IamEndPointUserPolicyRelationship(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 IamEndPointUserPolicyRelationship(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 IamEndPointUserPolicyRelationship(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 IamEndPointUserPolicyRelationship(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 IamEndPointUserPolicyRelationship(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 IamEndPointUserPolicyRelationship(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 IamEndPointUserPolicyRelationship(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 IamEndPointUserPolicyRelationship(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 IamEndPointUserPolicyRelationship(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/iam_end_point_user_policy_response.py b/intersight/model/iam_end_point_user_policy_response.py index 812295fa37..0e775a4d29 100644 --- a/intersight/model/iam_end_point_user_policy_response.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_relationship.py b/intersight/model/iam_end_point_user_relationship.py index e0032dfcd4..fc2e873bf8 100644 --- a/intersight/model/iam_end_point_user_relationship.py +++ b/intersight/model/iam_end_point_user_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 IamEndPointUserRelationship(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 IamEndPointUserRelationship(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 IamEndPointUserRelationship(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 IamEndPointUserRelationship(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 IamEndPointUserRelationship(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 IamEndPointUserRelationship(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 IamEndPointUserRelationship(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 IamEndPointUserRelationship(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 IamEndPointUserRelationship(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 IamEndPointUserRelationship(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/iam_end_point_user_response.py b/intersight/model/iam_end_point_user_response.py index 604819ab77..315546cef2 100644 --- a/intersight/model/iam_end_point_user_response.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_role.py b/intersight/model/iam_end_point_user_role.py index 718539ea95..5d9e494fee 100644 --- a/intersight/model/iam_end_point_user_role.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_role_all_of.py b/intersight/model/iam_end_point_user_role_all_of.py index 6c9f830ad0..93afba95ec 100644 --- a/intersight/model/iam_end_point_user_role_all_of.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_role_list.py b/intersight/model/iam_end_point_user_role_list.py index 9efd14a659..143a52f12d 100644 --- a/intersight/model/iam_end_point_user_role_list.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_role_list_all_of.py b/intersight/model/iam_end_point_user_role_list_all_of.py index 3e0e5fb417..e69379cc0c 100644 --- a/intersight/model/iam_end_point_user_role_list_all_of.py +++ b/intersight/model/iam_end_point_user_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/iam_end_point_user_role_relationship.py b/intersight/model/iam_end_point_user_role_relationship.py index 6e7d46bc3f..d2de7c3ca6 100644 --- a/intersight/model/iam_end_point_user_role_relationship.py +++ b/intersight/model/iam_end_point_user_role_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 IamEndPointUserRoleRelationship(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 IamEndPointUserRoleRelationship(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 IamEndPointUserRoleRelationship(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 IamEndPointUserRoleRelationship(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 IamEndPointUserRoleRelationship(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 IamEndPointUserRoleRelationship(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 IamEndPointUserRoleRelationship(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 IamEndPointUserRoleRelationship(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 IamEndPointUserRoleRelationship(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 IamEndPointUserRoleRelationship(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/iam_end_point_user_role_response.py b/intersight/model/iam_end_point_user_role_response.py index 71240dd42e..8b51e78beb 100644 --- a/intersight/model/iam_end_point_user_role_response.py +++ b/intersight/model/iam_end_point_user_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/iam_feature_definition.py b/intersight/model/iam_feature_definition.py index f34c99c5ce..e3521b03bf 100644 --- a/intersight/model/iam_feature_definition.py +++ b/intersight/model/iam_feature_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/iam_feature_definition_all_of.py b/intersight/model/iam_feature_definition_all_of.py index eaedb1ef39..aa86de242d 100644 --- a/intersight/model/iam_feature_definition_all_of.py +++ b/intersight/model/iam_feature_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/iam_group_permission_to_roles.py b/intersight/model/iam_group_permission_to_roles.py index f9ca629597..96392f5f74 100644 --- a/intersight/model/iam_group_permission_to_roles.py +++ b/intersight/model/iam_group_permission_to_roles.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_group_permission_to_roles_all_of.py b/intersight/model/iam_group_permission_to_roles_all_of.py index c73d42c2e5..877e5b68a6 100644 --- a/intersight/model/iam_group_permission_to_roles_all_of.py +++ b/intersight/model/iam_group_permission_to_roles_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_idp.py b/intersight/model/iam_idp.py index 820d2fadaa..405515034e 100644 --- a/intersight/model/iam_idp.py +++ b/intersight/model/iam_idp.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_idp_all_of.py b/intersight/model/iam_idp_all_of.py index 8bfb598479..4682c6ab57 100644 --- a/intersight/model/iam_idp_all_of.py +++ b/intersight/model/iam_idp_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_idp_list.py b/intersight/model/iam_idp_list.py index 901d2407ce..bf27b83cd0 100644 --- a/intersight/model/iam_idp_list.py +++ b/intersight/model/iam_idp_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/iam_idp_list_all_of.py b/intersight/model/iam_idp_list_all_of.py index b7e2f24a16..ab3e755391 100644 --- a/intersight/model/iam_idp_list_all_of.py +++ b/intersight/model/iam_idp_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/iam_idp_reference.py b/intersight/model/iam_idp_reference.py index 091e9edc43..ab9d947bd4 100644 --- a/intersight/model/iam_idp_reference.py +++ b/intersight/model/iam_idp_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/iam_idp_reference_all_of.py b/intersight/model/iam_idp_reference_all_of.py index d2657622fa..d35d391c6a 100644 --- a/intersight/model/iam_idp_reference_all_of.py +++ b/intersight/model/iam_idp_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/iam_idp_reference_list.py b/intersight/model/iam_idp_reference_list.py index 3220d9fc28..4c09c78f68 100644 --- a/intersight/model/iam_idp_reference_list.py +++ b/intersight/model/iam_idp_reference_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/iam_idp_reference_list_all_of.py b/intersight/model/iam_idp_reference_list_all_of.py index dd7ea9de32..fb955e5ee6 100644 --- a/intersight/model/iam_idp_reference_list_all_of.py +++ b/intersight/model/iam_idp_reference_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/iam_idp_reference_relationship.py b/intersight/model/iam_idp_reference_relationship.py index b85867fef3..09f9a1f39e 100644 --- a/intersight/model/iam_idp_reference_relationship.py +++ b/intersight/model/iam_idp_reference_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 IamIdpReferenceRelationship(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 IamIdpReferenceRelationship(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 IamIdpReferenceRelationship(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 IamIdpReferenceRelationship(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 IamIdpReferenceRelationship(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 IamIdpReferenceRelationship(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 IamIdpReferenceRelationship(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 IamIdpReferenceRelationship(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 IamIdpReferenceRelationship(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 IamIdpReferenceRelationship(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/iam_idp_reference_response.py b/intersight/model/iam_idp_reference_response.py index 31b8775c39..fd0baf9187 100644 --- a/intersight/model/iam_idp_reference_response.py +++ b/intersight/model/iam_idp_reference_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/iam_idp_relationship.py b/intersight/model/iam_idp_relationship.py index c57870fe5c..1604a9cd2d 100644 --- a/intersight/model/iam_idp_relationship.py +++ b/intersight/model/iam_idp_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 IamIdpRelationship(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 IamIdpRelationship(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 IamIdpRelationship(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 IamIdpRelationship(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 IamIdpRelationship(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 IamIdpRelationship(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 IamIdpRelationship(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 IamIdpRelationship(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 IamIdpRelationship(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 IamIdpRelationship(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/iam_idp_response.py b/intersight/model/iam_idp_response.py index e1a800a6cf..26fbdfdf07 100644 --- a/intersight/model/iam_idp_response.py +++ b/intersight/model/iam_idp_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/iam_ip_access_management.py b/intersight/model/iam_ip_access_management.py index 28e17ac8fc..46bab0d758 100644 --- a/intersight/model/iam_ip_access_management.py +++ b/intersight/model/iam_ip_access_management.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_ip_access_management_all_of.py b/intersight/model/iam_ip_access_management_all_of.py index f79668679a..10194ff3cf 100644 --- a/intersight/model/iam_ip_access_management_all_of.py +++ b/intersight/model/iam_ip_access_management_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_ip_access_management_list.py b/intersight/model/iam_ip_access_management_list.py index 0ae95d2bfe..258f7232aa 100644 --- a/intersight/model/iam_ip_access_management_list.py +++ b/intersight/model/iam_ip_access_management_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/iam_ip_access_management_list_all_of.py b/intersight/model/iam_ip_access_management_list_all_of.py index 1ac5806ea2..7eb2872599 100644 --- a/intersight/model/iam_ip_access_management_list_all_of.py +++ b/intersight/model/iam_ip_access_management_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/iam_ip_access_management_relationship.py b/intersight/model/iam_ip_access_management_relationship.py index 74dccd9b29..164cadd86d 100644 --- a/intersight/model/iam_ip_access_management_relationship.py +++ b/intersight/model/iam_ip_access_management_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 IamIpAccessManagementRelationship(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 IamIpAccessManagementRelationship(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 IamIpAccessManagementRelationship(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 IamIpAccessManagementRelationship(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 IamIpAccessManagementRelationship(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 IamIpAccessManagementRelationship(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 IamIpAccessManagementRelationship(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 IamIpAccessManagementRelationship(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 IamIpAccessManagementRelationship(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 IamIpAccessManagementRelationship(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/iam_ip_access_management_response.py b/intersight/model/iam_ip_access_management_response.py index 121ba38a5a..cba3a6ae90 100644 --- a/intersight/model/iam_ip_access_management_response.py +++ b/intersight/model/iam_ip_access_management_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/iam_ip_address.py b/intersight/model/iam_ip_address.py index ad73dd6046..1e45c64957 100644 --- a/intersight/model/iam_ip_address.py +++ b/intersight/model/iam_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/iam_ip_address_all_of.py b/intersight/model/iam_ip_address_all_of.py index aebcae420c..dbc854cff0 100644 --- a/intersight/model/iam_ip_address_all_of.py +++ b/intersight/model/iam_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/iam_ip_address_list.py b/intersight/model/iam_ip_address_list.py index 077b96a178..8587baf08c 100644 --- a/intersight/model/iam_ip_address_list.py +++ b/intersight/model/iam_ip_address_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/iam_ip_address_list_all_of.py b/intersight/model/iam_ip_address_list_all_of.py index c246b17378..2a9a4c0652 100644 --- a/intersight/model/iam_ip_address_list_all_of.py +++ b/intersight/model/iam_ip_address_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/iam_ip_address_relationship.py b/intersight/model/iam_ip_address_relationship.py index 6d1dde9e13..8799cf1be4 100644 --- a/intersight/model/iam_ip_address_relationship.py +++ b/intersight/model/iam_ip_address_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 IamIpAddressRelationship(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 IamIpAddressRelationship(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 IamIpAddressRelationship(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 IamIpAddressRelationship(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 IamIpAddressRelationship(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 IamIpAddressRelationship(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 IamIpAddressRelationship(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 IamIpAddressRelationship(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 IamIpAddressRelationship(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 IamIpAddressRelationship(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/iam_ip_address_response.py b/intersight/model/iam_ip_address_response.py index b1b8f14a8f..a1e1fdd9ab 100644 --- a/intersight/model/iam_ip_address_response.py +++ b/intersight/model/iam_ip_address_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/iam_ldap_base_properties.py b/intersight/model/iam_ldap_base_properties.py index 12411177f6..d449b2591c 100644 --- a/intersight/model/iam_ldap_base_properties.py +++ b/intersight/model/iam_ldap_base_properties.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_ldap_base_properties_all_of.py b/intersight/model/iam_ldap_base_properties_all_of.py index 6b4142fa5e..0597d55bc5 100644 --- a/intersight/model/iam_ldap_base_properties_all_of.py +++ b/intersight/model/iam_ldap_base_properties_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_ldap_dns_parameters.py b/intersight/model/iam_ldap_dns_parameters.py index 8280df5145..3232b9cc93 100644 --- a/intersight/model/iam_ldap_dns_parameters.py +++ b/intersight/model/iam_ldap_dns_parameters.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_ldap_dns_parameters_all_of.py b/intersight/model/iam_ldap_dns_parameters_all_of.py index cce0aa14ec..cc98c40164 100644 --- a/intersight/model/iam_ldap_dns_parameters_all_of.py +++ b/intersight/model/iam_ldap_dns_parameters_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_ldap_group.py b/intersight/model/iam_ldap_group.py index c9c3d5fe95..bd13d5f4b2 100644 --- a/intersight/model/iam_ldap_group.py +++ b/intersight/model/iam_ldap_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/iam_ldap_group_all_of.py b/intersight/model/iam_ldap_group_all_of.py index 473aa25e63..c889e6f4d9 100644 --- a/intersight/model/iam_ldap_group_all_of.py +++ b/intersight/model/iam_ldap_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/iam_ldap_group_list.py b/intersight/model/iam_ldap_group_list.py index 897d965d7a..21587b6fbb 100644 --- a/intersight/model/iam_ldap_group_list.py +++ b/intersight/model/iam_ldap_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/iam_ldap_group_list_all_of.py b/intersight/model/iam_ldap_group_list_all_of.py index 5e5eaab8e9..e2beae5088 100644 --- a/intersight/model/iam_ldap_group_list_all_of.py +++ b/intersight/model/iam_ldap_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/iam_ldap_group_relationship.py b/intersight/model/iam_ldap_group_relationship.py index fa90a27368..f83d3b6350 100644 --- a/intersight/model/iam_ldap_group_relationship.py +++ b/intersight/model/iam_ldap_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 """ @@ -76,6 +76,8 @@ class IamLdapGroupRelationship(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 IamLdapGroupRelationship(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 IamLdapGroupRelationship(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 IamLdapGroupRelationship(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 IamLdapGroupRelationship(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 IamLdapGroupRelationship(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 IamLdapGroupRelationship(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 IamLdapGroupRelationship(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 IamLdapGroupRelationship(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 IamLdapGroupRelationship(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/iam_ldap_group_response.py b/intersight/model/iam_ldap_group_response.py index 3976623f48..d3a2f2feb4 100644 --- a/intersight/model/iam_ldap_group_response.py +++ b/intersight/model/iam_ldap_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/iam_ldap_policy.py b/intersight/model/iam_ldap_policy.py index f176268956..cb89607f2c 100644 --- a/intersight/model/iam_ldap_policy.py +++ b/intersight/model/iam_ldap_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/iam_ldap_policy_all_of.py b/intersight/model/iam_ldap_policy_all_of.py index 6bd2d8fd26..9a34f7637d 100644 --- a/intersight/model/iam_ldap_policy_all_of.py +++ b/intersight/model/iam_ldap_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/iam_ldap_policy_list.py b/intersight/model/iam_ldap_policy_list.py index 9a9d8b6444..df05aa8d98 100644 --- a/intersight/model/iam_ldap_policy_list.py +++ b/intersight/model/iam_ldap_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/iam_ldap_policy_list_all_of.py b/intersight/model/iam_ldap_policy_list_all_of.py index 3d60f8a336..27d2442f04 100644 --- a/intersight/model/iam_ldap_policy_list_all_of.py +++ b/intersight/model/iam_ldap_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/iam_ldap_policy_relationship.py b/intersight/model/iam_ldap_policy_relationship.py index 870119fde4..f26ef3951a 100644 --- a/intersight/model/iam_ldap_policy_relationship.py +++ b/intersight/model/iam_ldap_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 IamLdapPolicyRelationship(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 IamLdapPolicyRelationship(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 IamLdapPolicyRelationship(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 IamLdapPolicyRelationship(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 IamLdapPolicyRelationship(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 IamLdapPolicyRelationship(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 IamLdapPolicyRelationship(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 IamLdapPolicyRelationship(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 IamLdapPolicyRelationship(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 IamLdapPolicyRelationship(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/iam_ldap_policy_response.py b/intersight/model/iam_ldap_policy_response.py index 765b5868a0..6d085e7563 100644 --- a/intersight/model/iam_ldap_policy_response.py +++ b/intersight/model/iam_ldap_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/iam_ldap_provider.py b/intersight/model/iam_ldap_provider.py index cbfb6bf1bc..5d390a8f74 100644 --- a/intersight/model/iam_ldap_provider.py +++ b/intersight/model/iam_ldap_provider.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_ldap_provider_all_of.py b/intersight/model/iam_ldap_provider_all_of.py index f1549065d1..33a1ab186e 100644 --- a/intersight/model/iam_ldap_provider_all_of.py +++ b/intersight/model/iam_ldap_provider_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_ldap_provider_list.py b/intersight/model/iam_ldap_provider_list.py index 6de56af1b0..50e4e87167 100644 --- a/intersight/model/iam_ldap_provider_list.py +++ b/intersight/model/iam_ldap_provider_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/iam_ldap_provider_list_all_of.py b/intersight/model/iam_ldap_provider_list_all_of.py index 00c9a8c4be..ecc647b7a6 100644 --- a/intersight/model/iam_ldap_provider_list_all_of.py +++ b/intersight/model/iam_ldap_provider_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/iam_ldap_provider_relationship.py b/intersight/model/iam_ldap_provider_relationship.py index cb20c88dca..ea199b22e4 100644 --- a/intersight/model/iam_ldap_provider_relationship.py +++ b/intersight/model/iam_ldap_provider_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 IamLdapProviderRelationship(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 IamLdapProviderRelationship(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 IamLdapProviderRelationship(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 IamLdapProviderRelationship(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 IamLdapProviderRelationship(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 IamLdapProviderRelationship(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 IamLdapProviderRelationship(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 IamLdapProviderRelationship(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 IamLdapProviderRelationship(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 IamLdapProviderRelationship(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/iam_ldap_provider_response.py b/intersight/model/iam_ldap_provider_response.py index c1d3701024..7e42fd36df 100644 --- a/intersight/model/iam_ldap_provider_response.py +++ b/intersight/model/iam_ldap_provider_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/iam_local_user_password.py b/intersight/model/iam_local_user_password.py index c19f7410a7..a6d1401784 100644 --- a/intersight/model/iam_local_user_password.py +++ b/intersight/model/iam_local_user_password.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_local_user_password_all_of.py b/intersight/model/iam_local_user_password_all_of.py index e93915c518..147f8a82a5 100644 --- a/intersight/model/iam_local_user_password_all_of.py +++ b/intersight/model/iam_local_user_password_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_local_user_password_policy.py b/intersight/model/iam_local_user_password_policy.py index 7ff3b6c641..05c923835e 100644 --- a/intersight/model/iam_local_user_password_policy.py +++ b/intersight/model/iam_local_user_password_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/iam_local_user_password_policy_all_of.py b/intersight/model/iam_local_user_password_policy_all_of.py index faf39684ba..d1b5842cb1 100644 --- a/intersight/model/iam_local_user_password_policy_all_of.py +++ b/intersight/model/iam_local_user_password_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/iam_local_user_password_policy_list.py b/intersight/model/iam_local_user_password_policy_list.py index f661013d3d..e21b2df5d4 100644 --- a/intersight/model/iam_local_user_password_policy_list.py +++ b/intersight/model/iam_local_user_password_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/iam_local_user_password_policy_list_all_of.py b/intersight/model/iam_local_user_password_policy_list_all_of.py index 459facb38b..3ceb94487b 100644 --- a/intersight/model/iam_local_user_password_policy_list_all_of.py +++ b/intersight/model/iam_local_user_password_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/iam_local_user_password_policy_response.py b/intersight/model/iam_local_user_password_policy_response.py index 6fac568133..8501a1e977 100644 --- a/intersight/model/iam_local_user_password_policy_response.py +++ b/intersight/model/iam_local_user_password_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/iam_local_user_password_relationship.py b/intersight/model/iam_local_user_password_relationship.py index 0784f11c09..f8c941d3b3 100644 --- a/intersight/model/iam_local_user_password_relationship.py +++ b/intersight/model/iam_local_user_password_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 IamLocalUserPasswordRelationship(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 IamLocalUserPasswordRelationship(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 IamLocalUserPasswordRelationship(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 IamLocalUserPasswordRelationship(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 IamLocalUserPasswordRelationship(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 IamLocalUserPasswordRelationship(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 IamLocalUserPasswordRelationship(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 IamLocalUserPasswordRelationship(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 IamLocalUserPasswordRelationship(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 IamLocalUserPasswordRelationship(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/iam_o_auth_token.py b/intersight/model/iam_o_auth_token.py index 049992b75f..07faf59617 100644 --- a/intersight/model/iam_o_auth_token.py +++ b/intersight/model/iam_o_auth_token.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_o_auth_token_all_of.py b/intersight/model/iam_o_auth_token_all_of.py index b7ef244c9d..8cf3e65bea 100644 --- a/intersight/model/iam_o_auth_token_all_of.py +++ b/intersight/model/iam_o_auth_token_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_o_auth_token_list.py b/intersight/model/iam_o_auth_token_list.py index 718046cb19..18c909c486 100644 --- a/intersight/model/iam_o_auth_token_list.py +++ b/intersight/model/iam_o_auth_token_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/iam_o_auth_token_list_all_of.py b/intersight/model/iam_o_auth_token_list_all_of.py index e9550178e1..bd91149757 100644 --- a/intersight/model/iam_o_auth_token_list_all_of.py +++ b/intersight/model/iam_o_auth_token_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/iam_o_auth_token_relationship.py b/intersight/model/iam_o_auth_token_relationship.py index 47e763bdf6..9402f86a26 100644 --- a/intersight/model/iam_o_auth_token_relationship.py +++ b/intersight/model/iam_o_auth_token_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 IamOAuthTokenRelationship(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 IamOAuthTokenRelationship(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 IamOAuthTokenRelationship(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 IamOAuthTokenRelationship(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 IamOAuthTokenRelationship(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 IamOAuthTokenRelationship(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 IamOAuthTokenRelationship(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 IamOAuthTokenRelationship(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 IamOAuthTokenRelationship(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 IamOAuthTokenRelationship(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/iam_o_auth_token_response.py b/intersight/model/iam_o_auth_token_response.py index e1c67ea9bb..eb4df106f9 100644 --- a/intersight/model/iam_o_auth_token_response.py +++ b/intersight/model/iam_o_auth_token_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/iam_permission.py b/intersight/model/iam_permission.py index 6fee5910c2..c2ea9ac39e 100644 --- a/intersight/model/iam_permission.py +++ b/intersight/model/iam_permission.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_permission_all_of.py b/intersight/model/iam_permission_all_of.py index 0965300b42..69fe04f56b 100644 --- a/intersight/model/iam_permission_all_of.py +++ b/intersight/model/iam_permission_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_permission_list.py b/intersight/model/iam_permission_list.py index 8f1634273a..9bfc842a58 100644 --- a/intersight/model/iam_permission_list.py +++ b/intersight/model/iam_permission_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/iam_permission_list_all_of.py b/intersight/model/iam_permission_list_all_of.py index b4442e3c18..67e30686e4 100644 --- a/intersight/model/iam_permission_list_all_of.py +++ b/intersight/model/iam_permission_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/iam_permission_reference.py b/intersight/model/iam_permission_reference.py index b94ef02f5d..ac799465b0 100644 --- a/intersight/model/iam_permission_reference.py +++ b/intersight/model/iam_permission_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/iam_permission_reference_all_of.py b/intersight/model/iam_permission_reference_all_of.py index 6b3939c4f6..b5f1f2af13 100644 --- a/intersight/model/iam_permission_reference_all_of.py +++ b/intersight/model/iam_permission_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/iam_permission_relationship.py b/intersight/model/iam_permission_relationship.py index b607d370e0..6942af456c 100644 --- a/intersight/model/iam_permission_relationship.py +++ b/intersight/model/iam_permission_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 IamPermissionRelationship(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 IamPermissionRelationship(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 IamPermissionRelationship(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 IamPermissionRelationship(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 IamPermissionRelationship(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 IamPermissionRelationship(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 IamPermissionRelationship(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 IamPermissionRelationship(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 IamPermissionRelationship(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 IamPermissionRelationship(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/iam_permission_response.py b/intersight/model/iam_permission_response.py index 923943263c..03cff352dd 100644 --- a/intersight/model/iam_permission_response.py +++ b/intersight/model/iam_permission_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/iam_permission_to_roles.py b/intersight/model/iam_permission_to_roles.py index f20e230587..57bb2f05c2 100644 --- a/intersight/model/iam_permission_to_roles.py +++ b/intersight/model/iam_permission_to_roles.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_permission_to_roles_all_of.py b/intersight/model/iam_permission_to_roles_all_of.py index 20e19ac668..043cbd171e 100644 --- a/intersight/model/iam_permission_to_roles_all_of.py +++ b/intersight/model/iam_permission_to_roles_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_private_key_spec.py b/intersight/model/iam_private_key_spec.py index 5194d3e252..0b03f81f9b 100644 --- a/intersight/model/iam_private_key_spec.py +++ b/intersight/model/iam_private_key_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_private_key_spec_all_of.py b/intersight/model/iam_private_key_spec_all_of.py index f26cded150..6eb429d9ff 100644 --- a/intersight/model/iam_private_key_spec_all_of.py +++ b/intersight/model/iam_private_key_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_private_key_spec_list.py b/intersight/model/iam_private_key_spec_list.py index bf96ff289e..28527bab6c 100644 --- a/intersight/model/iam_private_key_spec_list.py +++ b/intersight/model/iam_private_key_spec_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/iam_private_key_spec_list_all_of.py b/intersight/model/iam_private_key_spec_list_all_of.py index 891f113360..43e2b27166 100644 --- a/intersight/model/iam_private_key_spec_list_all_of.py +++ b/intersight/model/iam_private_key_spec_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/iam_private_key_spec_relationship.py b/intersight/model/iam_private_key_spec_relationship.py index 22b13c87e1..a4a0148205 100644 --- a/intersight/model/iam_private_key_spec_relationship.py +++ b/intersight/model/iam_private_key_spec_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 IamPrivateKeySpecRelationship(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 IamPrivateKeySpecRelationship(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 IamPrivateKeySpecRelationship(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 IamPrivateKeySpecRelationship(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 IamPrivateKeySpecRelationship(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 IamPrivateKeySpecRelationship(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 IamPrivateKeySpecRelationship(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 IamPrivateKeySpecRelationship(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 IamPrivateKeySpecRelationship(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 IamPrivateKeySpecRelationship(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/iam_private_key_spec_response.py b/intersight/model/iam_private_key_spec_response.py index 8f373f659d..88725cf1da 100644 --- a/intersight/model/iam_private_key_spec_response.py +++ b/intersight/model/iam_private_key_spec_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/iam_privilege.py b/intersight/model/iam_privilege.py index 49913adea5..cc680a72e4 100644 --- a/intersight/model/iam_privilege.py +++ b/intersight/model/iam_privilege.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_privilege_all_of.py b/intersight/model/iam_privilege_all_of.py index a199165cd1..0c56454a7a 100644 --- a/intersight/model/iam_privilege_all_of.py +++ b/intersight/model/iam_privilege_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_privilege_list.py b/intersight/model/iam_privilege_list.py index 9306c906b0..22fc546623 100644 --- a/intersight/model/iam_privilege_list.py +++ b/intersight/model/iam_privilege_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/iam_privilege_list_all_of.py b/intersight/model/iam_privilege_list_all_of.py index 1212ff5389..589012c0fb 100644 --- a/intersight/model/iam_privilege_list_all_of.py +++ b/intersight/model/iam_privilege_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/iam_privilege_relationship.py b/intersight/model/iam_privilege_relationship.py index f710fd393e..f20509a535 100644 --- a/intersight/model/iam_privilege_relationship.py +++ b/intersight/model/iam_privilege_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 IamPrivilegeRelationship(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 IamPrivilegeRelationship(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 IamPrivilegeRelationship(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 IamPrivilegeRelationship(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 IamPrivilegeRelationship(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 IamPrivilegeRelationship(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 IamPrivilegeRelationship(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 IamPrivilegeRelationship(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 IamPrivilegeRelationship(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 IamPrivilegeRelationship(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/iam_privilege_response.py b/intersight/model/iam_privilege_response.py index b6aced16eb..82dc1d56e0 100644 --- a/intersight/model/iam_privilege_response.py +++ b/intersight/model/iam_privilege_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/iam_privilege_set.py b/intersight/model/iam_privilege_set.py index 9632a30ada..9fc64031a1 100644 --- a/intersight/model/iam_privilege_set.py +++ b/intersight/model/iam_privilege_set.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_privilege_set_all_of.py b/intersight/model/iam_privilege_set_all_of.py index c43e11d3ce..948a6da422 100644 --- a/intersight/model/iam_privilege_set_all_of.py +++ b/intersight/model/iam_privilege_set_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_privilege_set_list.py b/intersight/model/iam_privilege_set_list.py index 5c471a31f9..7622812719 100644 --- a/intersight/model/iam_privilege_set_list.py +++ b/intersight/model/iam_privilege_set_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/iam_privilege_set_list_all_of.py b/intersight/model/iam_privilege_set_list_all_of.py index a0be01d967..4f732004e2 100644 --- a/intersight/model/iam_privilege_set_list_all_of.py +++ b/intersight/model/iam_privilege_set_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/iam_privilege_set_relationship.py b/intersight/model/iam_privilege_set_relationship.py index c4759311b9..f9a5bcd67b 100644 --- a/intersight/model/iam_privilege_set_relationship.py +++ b/intersight/model/iam_privilege_set_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 IamPrivilegeSetRelationship(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 IamPrivilegeSetRelationship(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 IamPrivilegeSetRelationship(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 IamPrivilegeSetRelationship(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 IamPrivilegeSetRelationship(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 IamPrivilegeSetRelationship(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 IamPrivilegeSetRelationship(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 IamPrivilegeSetRelationship(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 IamPrivilegeSetRelationship(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 IamPrivilegeSetRelationship(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/iam_privilege_set_response.py b/intersight/model/iam_privilege_set_response.py index af7b0633c7..a318323211 100644 --- a/intersight/model/iam_privilege_set_response.py +++ b/intersight/model/iam_privilege_set_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/iam_qualifier.py b/intersight/model/iam_qualifier.py index da8c9698f6..57fd80222c 100644 --- a/intersight/model/iam_qualifier.py +++ b/intersight/model/iam_qualifier.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_qualifier_all_of.py b/intersight/model/iam_qualifier_all_of.py index bf7bda51d7..ec2c5b3c69 100644 --- a/intersight/model/iam_qualifier_all_of.py +++ b/intersight/model/iam_qualifier_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_qualifier_list.py b/intersight/model/iam_qualifier_list.py index a3a6187cc1..7135ead844 100644 --- a/intersight/model/iam_qualifier_list.py +++ b/intersight/model/iam_qualifier_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/iam_qualifier_list_all_of.py b/intersight/model/iam_qualifier_list_all_of.py index 7bda5fc51c..ac613e8c24 100644 --- a/intersight/model/iam_qualifier_list_all_of.py +++ b/intersight/model/iam_qualifier_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/iam_qualifier_relationship.py b/intersight/model/iam_qualifier_relationship.py index db2414ee1b..bcaacdf172 100644 --- a/intersight/model/iam_qualifier_relationship.py +++ b/intersight/model/iam_qualifier_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 IamQualifierRelationship(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 IamQualifierRelationship(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 IamQualifierRelationship(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 IamQualifierRelationship(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 IamQualifierRelationship(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 IamQualifierRelationship(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 IamQualifierRelationship(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 IamQualifierRelationship(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 IamQualifierRelationship(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 IamQualifierRelationship(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/iam_qualifier_response.py b/intersight/model/iam_qualifier_response.py index aa9091458c..00915a0b0d 100644 --- a/intersight/model/iam_qualifier_response.py +++ b/intersight/model/iam_qualifier_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/iam_resource_limits.py b/intersight/model/iam_resource_limits.py index 9f8b647f2e..f9ba00549f 100644 --- a/intersight/model/iam_resource_limits.py +++ b/intersight/model/iam_resource_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/iam_resource_limits_all_of.py b/intersight/model/iam_resource_limits_all_of.py index dae3298543..9e591e014d 100644 --- a/intersight/model/iam_resource_limits_all_of.py +++ b/intersight/model/iam_resource_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/iam_resource_limits_list.py b/intersight/model/iam_resource_limits_list.py index f65e45674a..d854099497 100644 --- a/intersight/model/iam_resource_limits_list.py +++ b/intersight/model/iam_resource_limits_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/iam_resource_limits_list_all_of.py b/intersight/model/iam_resource_limits_list_all_of.py index c491dde4d9..a996c6f427 100644 --- a/intersight/model/iam_resource_limits_list_all_of.py +++ b/intersight/model/iam_resource_limits_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/iam_resource_limits_relationship.py b/intersight/model/iam_resource_limits_relationship.py index 4d0836f05d..594bbdfdad 100644 --- a/intersight/model/iam_resource_limits_relationship.py +++ b/intersight/model/iam_resource_limits_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 IamResourceLimitsRelationship(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 IamResourceLimitsRelationship(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 IamResourceLimitsRelationship(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 IamResourceLimitsRelationship(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 IamResourceLimitsRelationship(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 IamResourceLimitsRelationship(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 IamResourceLimitsRelationship(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 IamResourceLimitsRelationship(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 IamResourceLimitsRelationship(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 IamResourceLimitsRelationship(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/iam_resource_limits_response.py b/intersight/model/iam_resource_limits_response.py index 5a20fda4f1..3350427d2c 100644 --- a/intersight/model/iam_resource_limits_response.py +++ b/intersight/model/iam_resource_limits_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/iam_resource_permission.py b/intersight/model/iam_resource_permission.py index 285a65667b..c49a75cb52 100644 --- a/intersight/model/iam_resource_permission.py +++ b/intersight/model/iam_resource_permission.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_resource_permission_all_of.py b/intersight/model/iam_resource_permission_all_of.py index 9a58be116d..55624fa440 100644 --- a/intersight/model/iam_resource_permission_all_of.py +++ b/intersight/model/iam_resource_permission_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_resource_permission_list.py b/intersight/model/iam_resource_permission_list.py index cf05600e29..69ce5737df 100644 --- a/intersight/model/iam_resource_permission_list.py +++ b/intersight/model/iam_resource_permission_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/iam_resource_permission_list_all_of.py b/intersight/model/iam_resource_permission_list_all_of.py index f739f405bf..8540f91d2e 100644 --- a/intersight/model/iam_resource_permission_list_all_of.py +++ b/intersight/model/iam_resource_permission_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/iam_resource_permission_relationship.py b/intersight/model/iam_resource_permission_relationship.py index 678146c965..9d3a233b70 100644 --- a/intersight/model/iam_resource_permission_relationship.py +++ b/intersight/model/iam_resource_permission_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 IamResourcePermissionRelationship(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 IamResourcePermissionRelationship(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 IamResourcePermissionRelationship(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 IamResourcePermissionRelationship(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 IamResourcePermissionRelationship(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 IamResourcePermissionRelationship(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 IamResourcePermissionRelationship(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 IamResourcePermissionRelationship(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 IamResourcePermissionRelationship(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 IamResourcePermissionRelationship(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/iam_resource_permission_response.py b/intersight/model/iam_resource_permission_response.py index 6619dfa155..aa78638771 100644 --- a/intersight/model/iam_resource_permission_response.py +++ b/intersight/model/iam_resource_permission_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/iam_resource_roles.py b/intersight/model/iam_resource_roles.py index fbc9657443..b146421b28 100644 --- a/intersight/model/iam_resource_roles.py +++ b/intersight/model/iam_resource_roles.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_resource_roles_all_of.py b/intersight/model/iam_resource_roles_all_of.py index 3a174f448e..f77c5b75a4 100644 --- a/intersight/model/iam_resource_roles_all_of.py +++ b/intersight/model/iam_resource_roles_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_resource_roles_list.py b/intersight/model/iam_resource_roles_list.py index 89c9c4c22e..38d1692577 100644 --- a/intersight/model/iam_resource_roles_list.py +++ b/intersight/model/iam_resource_roles_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/iam_resource_roles_list_all_of.py b/intersight/model/iam_resource_roles_list_all_of.py index 46813c6941..d5db1768b5 100644 --- a/intersight/model/iam_resource_roles_list_all_of.py +++ b/intersight/model/iam_resource_roles_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/iam_resource_roles_relationship.py b/intersight/model/iam_resource_roles_relationship.py index a439c27430..27a54c7dec 100644 --- a/intersight/model/iam_resource_roles_relationship.py +++ b/intersight/model/iam_resource_roles_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 IamResourceRolesRelationship(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 IamResourceRolesRelationship(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 IamResourceRolesRelationship(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 IamResourceRolesRelationship(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 IamResourceRolesRelationship(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 IamResourceRolesRelationship(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 IamResourceRolesRelationship(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 IamResourceRolesRelationship(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 IamResourceRolesRelationship(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 IamResourceRolesRelationship(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/iam_resource_roles_response.py b/intersight/model/iam_resource_roles_response.py index d432fa5cc5..a4a3e90848 100644 --- a/intersight/model/iam_resource_roles_response.py +++ b/intersight/model/iam_resource_roles_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/iam_role.py b/intersight/model/iam_role.py index 3418dcea99..8a328f0ce3 100644 --- a/intersight/model/iam_role.py +++ b/intersight/model/iam_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/iam_role_all_of.py b/intersight/model/iam_role_all_of.py index 5ef38ba6a3..6e4fd02552 100644 --- a/intersight/model/iam_role_all_of.py +++ b/intersight/model/iam_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/iam_role_list.py b/intersight/model/iam_role_list.py index 1bb4f9bb58..874c56175d 100644 --- a/intersight/model/iam_role_list.py +++ b/intersight/model/iam_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/iam_role_list_all_of.py b/intersight/model/iam_role_list_all_of.py index 8ed32d27a0..ff6c50c5c2 100644 --- a/intersight/model/iam_role_list_all_of.py +++ b/intersight/model/iam_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/iam_role_relationship.py b/intersight/model/iam_role_relationship.py index e6ff3f0fcd..824ba7ee03 100644 --- a/intersight/model/iam_role_relationship.py +++ b/intersight/model/iam_role_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 IamRoleRelationship(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 IamRoleRelationship(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 IamRoleRelationship(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 IamRoleRelationship(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 IamRoleRelationship(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 IamRoleRelationship(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 IamRoleRelationship(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 IamRoleRelationship(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 IamRoleRelationship(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 IamRoleRelationship(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/iam_role_response.py b/intersight/model/iam_role_response.py index 7a7d43159a..66dd22f129 100644 --- a/intersight/model/iam_role_response.py +++ b/intersight/model/iam_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/iam_rule.py b/intersight/model/iam_rule.py index 3371f0196d..f115c886c8 100644 --- a/intersight/model/iam_rule.py +++ b/intersight/model/iam_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/iam_rule_all_of.py b/intersight/model/iam_rule_all_of.py index 39440f8b94..3375b69da8 100644 --- a/intersight/model/iam_rule_all_of.py +++ b/intersight/model/iam_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/iam_saml_sp_connection.py b/intersight/model/iam_saml_sp_connection.py index ba0e6981e3..9d6c11f4a9 100644 --- a/intersight/model/iam_saml_sp_connection.py +++ b/intersight/model/iam_saml_sp_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/iam_saml_sp_connection_all_of.py b/intersight/model/iam_saml_sp_connection_all_of.py index 8f47cc603c..c2e817c1d2 100644 --- a/intersight/model/iam_saml_sp_connection_all_of.py +++ b/intersight/model/iam_saml_sp_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/iam_security_holder.py b/intersight/model/iam_security_holder.py index 114d6ca0a2..90989a0d18 100644 --- a/intersight/model/iam_security_holder.py +++ b/intersight/model/iam_security_holder.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_security_holder_all_of.py b/intersight/model/iam_security_holder_all_of.py index 35244f8d18..088ad10dae 100644 --- a/intersight/model/iam_security_holder_all_of.py +++ b/intersight/model/iam_security_holder_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_security_holder_list.py b/intersight/model/iam_security_holder_list.py index 081eed3c9e..e9389fdfb8 100644 --- a/intersight/model/iam_security_holder_list.py +++ b/intersight/model/iam_security_holder_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/iam_security_holder_list_all_of.py b/intersight/model/iam_security_holder_list_all_of.py index c97c09c98c..04da6cc0b8 100644 --- a/intersight/model/iam_security_holder_list_all_of.py +++ b/intersight/model/iam_security_holder_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/iam_security_holder_relationship.py b/intersight/model/iam_security_holder_relationship.py index 13043c1d24..fb708574d3 100644 --- a/intersight/model/iam_security_holder_relationship.py +++ b/intersight/model/iam_security_holder_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 IamSecurityHolderRelationship(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 IamSecurityHolderRelationship(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 IamSecurityHolderRelationship(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 IamSecurityHolderRelationship(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 IamSecurityHolderRelationship(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 IamSecurityHolderRelationship(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 IamSecurityHolderRelationship(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 IamSecurityHolderRelationship(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 IamSecurityHolderRelationship(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 IamSecurityHolderRelationship(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/iam_security_holder_response.py b/intersight/model/iam_security_holder_response.py index e9086e0b8a..9082636bca 100644 --- a/intersight/model/iam_security_holder_response.py +++ b/intersight/model/iam_security_holder_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/iam_service_provider.py b/intersight/model/iam_service_provider.py index a201be072c..dc530c599e 100644 --- a/intersight/model/iam_service_provider.py +++ b/intersight/model/iam_service_provider.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_service_provider_all_of.py b/intersight/model/iam_service_provider_all_of.py index 613512b1fe..4ddf91d633 100644 --- a/intersight/model/iam_service_provider_all_of.py +++ b/intersight/model/iam_service_provider_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_service_provider_list.py b/intersight/model/iam_service_provider_list.py index 9969c5cc6a..76684abba6 100644 --- a/intersight/model/iam_service_provider_list.py +++ b/intersight/model/iam_service_provider_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/iam_service_provider_list_all_of.py b/intersight/model/iam_service_provider_list_all_of.py index 1eae5023f2..cc5b1aab28 100644 --- a/intersight/model/iam_service_provider_list_all_of.py +++ b/intersight/model/iam_service_provider_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/iam_service_provider_relationship.py b/intersight/model/iam_service_provider_relationship.py index f9c461e468..2bcb94cf75 100644 --- a/intersight/model/iam_service_provider_relationship.py +++ b/intersight/model/iam_service_provider_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 IamServiceProviderRelationship(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 IamServiceProviderRelationship(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 IamServiceProviderRelationship(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 IamServiceProviderRelationship(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 IamServiceProviderRelationship(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 IamServiceProviderRelationship(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 IamServiceProviderRelationship(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 IamServiceProviderRelationship(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 IamServiceProviderRelationship(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 IamServiceProviderRelationship(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/iam_service_provider_response.py b/intersight/model/iam_service_provider_response.py index 56abd1d7c0..73f1f9522a 100644 --- a/intersight/model/iam_service_provider_response.py +++ b/intersight/model/iam_service_provider_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/iam_session.py b/intersight/model/iam_session.py index 2ad792b08a..97975c0a4b 100644 --- a/intersight/model/iam_session.py +++ b/intersight/model/iam_session.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_session_all_of.py b/intersight/model/iam_session_all_of.py index 3fa8d3652a..b42d734541 100644 --- a/intersight/model/iam_session_all_of.py +++ b/intersight/model/iam_session_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_session_limits.py b/intersight/model/iam_session_limits.py index c882df6000..08946f6591 100644 --- a/intersight/model/iam_session_limits.py +++ b/intersight/model/iam_session_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/iam_session_limits_all_of.py b/intersight/model/iam_session_limits_all_of.py index e885a059b9..8dbc6ab1f0 100644 --- a/intersight/model/iam_session_limits_all_of.py +++ b/intersight/model/iam_session_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/iam_session_limits_list.py b/intersight/model/iam_session_limits_list.py index 720358e4c5..0d6861de64 100644 --- a/intersight/model/iam_session_limits_list.py +++ b/intersight/model/iam_session_limits_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/iam_session_limits_list_all_of.py b/intersight/model/iam_session_limits_list_all_of.py index 6c0573a849..a14f1d0a95 100644 --- a/intersight/model/iam_session_limits_list_all_of.py +++ b/intersight/model/iam_session_limits_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/iam_session_limits_relationship.py b/intersight/model/iam_session_limits_relationship.py index 060affd5b2..ed66aeef66 100644 --- a/intersight/model/iam_session_limits_relationship.py +++ b/intersight/model/iam_session_limits_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 IamSessionLimitsRelationship(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 IamSessionLimitsRelationship(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 IamSessionLimitsRelationship(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 IamSessionLimitsRelationship(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 IamSessionLimitsRelationship(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 IamSessionLimitsRelationship(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 IamSessionLimitsRelationship(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 IamSessionLimitsRelationship(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 IamSessionLimitsRelationship(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 IamSessionLimitsRelationship(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/iam_session_limits_response.py b/intersight/model/iam_session_limits_response.py index b8cd39d764..4af90e74ba 100644 --- a/intersight/model/iam_session_limits_response.py +++ b/intersight/model/iam_session_limits_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/iam_session_list.py b/intersight/model/iam_session_list.py index dad4c0d190..2ad934ef34 100644 --- a/intersight/model/iam_session_list.py +++ b/intersight/model/iam_session_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/iam_session_list_all_of.py b/intersight/model/iam_session_list_all_of.py index 7999b8edb3..cd344acf06 100644 --- a/intersight/model/iam_session_list_all_of.py +++ b/intersight/model/iam_session_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/iam_session_relationship.py b/intersight/model/iam_session_relationship.py index ee25223152..adcbab420a 100644 --- a/intersight/model/iam_session_relationship.py +++ b/intersight/model/iam_session_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 IamSessionRelationship(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 IamSessionRelationship(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 IamSessionRelationship(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 IamSessionRelationship(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 IamSessionRelationship(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 IamSessionRelationship(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 IamSessionRelationship(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 IamSessionRelationship(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 IamSessionRelationship(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 IamSessionRelationship(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/iam_session_response.py b/intersight/model/iam_session_response.py index f0eafd182f..fdd79c0a3a 100644 --- a/intersight/model/iam_session_response.py +++ b/intersight/model/iam_session_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/iam_sso_session_attributes.py b/intersight/model/iam_sso_session_attributes.py index 6b2d8274bb..94fc85c07d 100644 --- a/intersight/model/iam_sso_session_attributes.py +++ b/intersight/model/iam_sso_session_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/iam_sso_session_attributes_all_of.py b/intersight/model/iam_sso_session_attributes_all_of.py index ac2391351a..4f609f3a8d 100644 --- a/intersight/model/iam_sso_session_attributes_all_of.py +++ b/intersight/model/iam_sso_session_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/iam_system.py b/intersight/model/iam_system.py index 8983e06a29..46ea957cdf 100644 --- a/intersight/model/iam_system.py +++ b/intersight/model/iam_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/iam_system_all_of.py b/intersight/model/iam_system_all_of.py index c0f65efb70..50523372c7 100644 --- a/intersight/model/iam_system_all_of.py +++ b/intersight/model/iam_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/iam_system_list.py b/intersight/model/iam_system_list.py index 1b80143cb6..f0143f375d 100644 --- a/intersight/model/iam_system_list.py +++ b/intersight/model/iam_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/iam_system_list_all_of.py b/intersight/model/iam_system_list_all_of.py index 5047079460..0345af391e 100644 --- a/intersight/model/iam_system_list_all_of.py +++ b/intersight/model/iam_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/iam_system_relationship.py b/intersight/model/iam_system_relationship.py index bda4cbdc50..05fe2b2445 100644 --- a/intersight/model/iam_system_relationship.py +++ b/intersight/model/iam_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 """ @@ -86,6 +86,8 @@ class IamSystemRelationship(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 IamSystemRelationship(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 IamSystemRelationship(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 IamSystemRelationship(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 IamSystemRelationship(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 IamSystemRelationship(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 IamSystemRelationship(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 IamSystemRelationship(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 IamSystemRelationship(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 IamSystemRelationship(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/iam_system_response.py b/intersight/model/iam_system_response.py index 653194fae8..3e03fe20be 100644 --- a/intersight/model/iam_system_response.py +++ b/intersight/model/iam_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/iam_trust_point.py b/intersight/model/iam_trust_point.py index 7acacfaf6a..3d217f002a 100644 --- a/intersight/model/iam_trust_point.py +++ b/intersight/model/iam_trust_point.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_trust_point_all_of.py b/intersight/model/iam_trust_point_all_of.py index f773224c4e..55eca05bd6 100644 --- a/intersight/model/iam_trust_point_all_of.py +++ b/intersight/model/iam_trust_point_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_trust_point_list.py b/intersight/model/iam_trust_point_list.py index ade035b0b7..bcfdf1a2a2 100644 --- a/intersight/model/iam_trust_point_list.py +++ b/intersight/model/iam_trust_point_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/iam_trust_point_list_all_of.py b/intersight/model/iam_trust_point_list_all_of.py index aa18ef240a..da1d1d989a 100644 --- a/intersight/model/iam_trust_point_list_all_of.py +++ b/intersight/model/iam_trust_point_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/iam_trust_point_response.py b/intersight/model/iam_trust_point_response.py index f05a3cc126..38c313892c 100644 --- a/intersight/model/iam_trust_point_response.py +++ b/intersight/model/iam_trust_point_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/iam_user.py b/intersight/model/iam_user.py index 9517aa6f04..54b37de2a9 100644 --- a/intersight/model/iam_user.py +++ b/intersight/model/iam_user.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_user_all_of.py b/intersight/model/iam_user_all_of.py index 718468afe1..a20b4b52fa 100644 --- a/intersight/model/iam_user_all_of.py +++ b/intersight/model/iam_user_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_user_group.py b/intersight/model/iam_user_group.py index ce8e0742d4..70af920125 100644 --- a/intersight/model/iam_user_group.py +++ b/intersight/model/iam_user_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/iam_user_group_all_of.py b/intersight/model/iam_user_group_all_of.py index f718c4bb75..9ddac734d1 100644 --- a/intersight/model/iam_user_group_all_of.py +++ b/intersight/model/iam_user_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/iam_user_group_list.py b/intersight/model/iam_user_group_list.py index 85216400a8..4fb0d407d8 100644 --- a/intersight/model/iam_user_group_list.py +++ b/intersight/model/iam_user_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/iam_user_group_list_all_of.py b/intersight/model/iam_user_group_list_all_of.py index ee812cd18e..ec34d4c7ad 100644 --- a/intersight/model/iam_user_group_list_all_of.py +++ b/intersight/model/iam_user_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/iam_user_group_relationship.py b/intersight/model/iam_user_group_relationship.py index 895cde67ea..742fa0b7e3 100644 --- a/intersight/model/iam_user_group_relationship.py +++ b/intersight/model/iam_user_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 """ @@ -82,6 +82,8 @@ class IamUserGroupRelationship(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 IamUserGroupRelationship(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 IamUserGroupRelationship(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 IamUserGroupRelationship(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 IamUserGroupRelationship(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 IamUserGroupRelationship(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 IamUserGroupRelationship(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 IamUserGroupRelationship(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 IamUserGroupRelationship(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 IamUserGroupRelationship(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/iam_user_group_response.py b/intersight/model/iam_user_group_response.py index 3792780bba..6fbad57060 100644 --- a/intersight/model/iam_user_group_response.py +++ b/intersight/model/iam_user_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/iam_user_list.py b/intersight/model/iam_user_list.py index ce8b640add..dafa0c8b52 100644 --- a/intersight/model/iam_user_list.py +++ b/intersight/model/iam_user_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/iam_user_list_all_of.py b/intersight/model/iam_user_list_all_of.py index 8110f598d2..1806c4185b 100644 --- a/intersight/model/iam_user_list_all_of.py +++ b/intersight/model/iam_user_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/iam_user_preference.py b/intersight/model/iam_user_preference.py index 32aac5a2cb..d6711a6b35 100644 --- a/intersight/model/iam_user_preference.py +++ b/intersight/model/iam_user_preference.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_user_preference_all_of.py b/intersight/model/iam_user_preference_all_of.py index 844351593c..c84518f6af 100644 --- a/intersight/model/iam_user_preference_all_of.py +++ b/intersight/model/iam_user_preference_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/iam_user_preference_list.py b/intersight/model/iam_user_preference_list.py index 67df5d8a56..77cc70dbb0 100644 --- a/intersight/model/iam_user_preference_list.py +++ b/intersight/model/iam_user_preference_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/iam_user_preference_list_all_of.py b/intersight/model/iam_user_preference_list_all_of.py index 518cfd16bd..8271022de1 100644 --- a/intersight/model/iam_user_preference_list_all_of.py +++ b/intersight/model/iam_user_preference_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/iam_user_preference_relationship.py b/intersight/model/iam_user_preference_relationship.py index e6dfb452b2..5d61b736ce 100644 --- a/intersight/model/iam_user_preference_relationship.py +++ b/intersight/model/iam_user_preference_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 IamUserPreferenceRelationship(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 IamUserPreferenceRelationship(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 IamUserPreferenceRelationship(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 IamUserPreferenceRelationship(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 IamUserPreferenceRelationship(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 IamUserPreferenceRelationship(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 IamUserPreferenceRelationship(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 IamUserPreferenceRelationship(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 IamUserPreferenceRelationship(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 IamUserPreferenceRelationship(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/iam_user_preference_response.py b/intersight/model/iam_user_preference_response.py index 523d03b864..687de56f5d 100644 --- a/intersight/model/iam_user_preference_response.py +++ b/intersight/model/iam_user_preference_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/iam_user_relationship.py b/intersight/model/iam_user_relationship.py index e4d664b88d..9c97b6abb3 100644 --- a/intersight/model/iam_user_relationship.py +++ b/intersight/model/iam_user_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 IamUserRelationship(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 IamUserRelationship(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 IamUserRelationship(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 IamUserRelationship(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 IamUserRelationship(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 IamUserRelationship(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 IamUserRelationship(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 IamUserRelationship(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 IamUserRelationship(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 IamUserRelationship(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/iam_user_response.py b/intersight/model/iam_user_response.py index f0993b760a..2711f4ec27 100644 --- a/intersight/model/iam_user_response.py +++ b/intersight/model/iam_user_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/imcconnector_web_ui_message.py b/intersight/model/imcconnector_web_ui_message.py index 357f22e2ff..747688e6a0 100644 --- a/intersight/model/imcconnector_web_ui_message.py +++ b/intersight/model/imcconnector_web_ui_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/imcconnector_web_ui_message_all_of.py b/intersight/model/imcconnector_web_ui_message_all_of.py index fa1a6e38b4..d4716182a0 100644 --- a/intersight/model/imcconnector_web_ui_message_all_of.py +++ b/intersight/model/imcconnector_web_ui_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/infra_hardware_info.py b/intersight/model/infra_hardware_info.py index 23219c80ec..a66c4d5d4f 100644 --- a/intersight/model/infra_hardware_info.py +++ b/intersight/model/infra_hardware_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/infra_hardware_info_all_of.py b/intersight/model/infra_hardware_info_all_of.py index 77aa7b5a58..1f3a6da193 100644 --- a/intersight/model/infra_hardware_info_all_of.py +++ b/intersight/model/infra_hardware_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/infra_meta_data.py b/intersight/model/infra_meta_data.py index 17dade0381..2c6d92da91 100644 --- a/intersight/model/infra_meta_data.py +++ b/intersight/model/infra_meta_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/infra_meta_data_all_of.py b/intersight/model/infra_meta_data_all_of.py index ae3df7b56d..2840bb4f95 100644 --- a/intersight/model/infra_meta_data_all_of.py +++ b/intersight/model/infra_meta_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/inventory_base.py b/intersight/model/inventory_base.py index 874d5be85c..de80d7d685 100644 --- a/intersight/model/inventory_base.py +++ b/intersight/model/inventory_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 """ @@ -63,6 +63,7 @@ def lazy_import(): from intersight.model.equipment_abstract_device import EquipmentAbstractDevice from intersight.model.equipment_base import EquipmentBase 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 @@ -199,6 +200,7 @@ def lazy_import(): globals()['EquipmentAbstractDevice'] = EquipmentAbstractDevice globals()['EquipmentBase'] = EquipmentBase globals()['EquipmentChassis'] = EquipmentChassis + globals()['EquipmentExpanderModule'] = EquipmentExpanderModule globals()['EquipmentFan'] = EquipmentFan globals()['EquipmentFanControl'] = EquipmentFanControl globals()['EquipmentFanModule'] = EquipmentFanModule @@ -358,6 +360,7 @@ class InventoryBase(ModelComposed): 'COMPUTE.SERVERSETTING': "compute.ServerSetting", 'COMPUTE.VMEDIA': "compute.Vmedia", 'EQUIPMENT.CHASSIS': "equipment.Chassis", + 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule", 'EQUIPMENT.FAN': "equipment.Fan", 'EQUIPMENT.FANCONTROL': "equipment.FanControl", 'EQUIPMENT.FANMODULE': "equipment.FanModule", @@ -477,6 +480,7 @@ class InventoryBase(ModelComposed): 'COMPUTE.SERVERSETTING': "compute.ServerSetting", 'COMPUTE.VMEDIA': "compute.Vmedia", 'EQUIPMENT.CHASSIS': "equipment.Chassis", + 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule", 'EQUIPMENT.FAN': "equipment.Fan", 'EQUIPMENT.FANCONTROL': "equipment.FanControl", 'EQUIPMENT.FANMODULE': "equipment.FanModule", @@ -651,6 +655,7 @@ def discriminator(): 'equipment.AbstractDevice': EquipmentAbstractDevice, 'equipment.Base': EquipmentBase, 'equipment.Chassis': EquipmentChassis, + 'equipment.ExpanderModule': EquipmentExpanderModule, 'equipment.Fan': EquipmentFan, 'equipment.FanControl': EquipmentFanControl, 'equipment.FanModule': EquipmentFanModule, diff --git a/intersight/model/inventory_base_all_of.py b/intersight/model/inventory_base_all_of.py index 35d46c213e..3f8b08bb44 100644 --- a/intersight/model/inventory_base_all_of.py +++ b/intersight/model/inventory_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 """ @@ -84,6 +84,7 @@ class InventoryBaseAllOf(ModelNormal): 'COMPUTE.SERVERSETTING': "compute.ServerSetting", 'COMPUTE.VMEDIA': "compute.Vmedia", 'EQUIPMENT.CHASSIS': "equipment.Chassis", + 'EQUIPMENT.EXPANDERMODULE': "equipment.ExpanderModule", 'EQUIPMENT.FAN': "equipment.Fan", 'EQUIPMENT.FANCONTROL': "equipment.FanControl", 'EQUIPMENT.FANMODULE': "equipment.FanModule", @@ -203,6 +204,7 @@ class InventoryBaseAllOf(ModelNormal): 'COMPUTE.SERVERSETTING': "compute.ServerSetting", 'COMPUTE.VMEDIA': "compute.Vmedia", '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/inventory_base_relationship.py b/intersight/model/inventory_base_relationship.py index 8ebcd49de4..04720eb0ae 100644 --- a/intersight/model/inventory_base_relationship.py +++ b/intersight/model/inventory_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 """ @@ -72,6 +72,8 @@ class InventoryBaseRelationship(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 InventoryBaseRelationship(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 InventoryBaseRelationship(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 InventoryBaseRelationship(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 InventoryBaseRelationship(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 InventoryBaseRelationship(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 InventoryBaseRelationship(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 InventoryBaseRelationship(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 InventoryBaseRelationship(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 InventoryBaseRelationship(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/inventory_device_info.py b/intersight/model/inventory_device_info.py index 99b5568617..35335cd92e 100644 --- a/intersight/model/inventory_device_info.py +++ b/intersight/model/inventory_device_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/inventory_device_info_list.py b/intersight/model/inventory_device_info_list.py index f77088d701..8906484575 100644 --- a/intersight/model/inventory_device_info_list.py +++ b/intersight/model/inventory_device_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/inventory_device_info_list_all_of.py b/intersight/model/inventory_device_info_list_all_of.py index 9b05273efd..30e7a4dc5f 100644 --- a/intersight/model/inventory_device_info_list_all_of.py +++ b/intersight/model/inventory_device_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/inventory_device_info_relationship.py b/intersight/model/inventory_device_info_relationship.py index fd23ed2519..c8f6aed99e 100644 --- a/intersight/model/inventory_device_info_relationship.py +++ b/intersight/model/inventory_device_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 InventoryDeviceInfoRelationship(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 InventoryDeviceInfoRelationship(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 InventoryDeviceInfoRelationship(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 InventoryDeviceInfoRelationship(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 InventoryDeviceInfoRelationship(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 InventoryDeviceInfoRelationship(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 InventoryDeviceInfoRelationship(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 InventoryDeviceInfoRelationship(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 InventoryDeviceInfoRelationship(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 InventoryDeviceInfoRelationship(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/inventory_device_info_response.py b/intersight/model/inventory_device_info_response.py index f637e46048..e263250cbe 100644 --- a/intersight/model/inventory_device_info_response.py +++ b/intersight/model/inventory_device_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/inventory_dn_mo_binding.py b/intersight/model/inventory_dn_mo_binding.py index ad5e222844..6d57be74b6 100644 --- a/intersight/model/inventory_dn_mo_binding.py +++ b/intersight/model/inventory_dn_mo_binding.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/inventory_dn_mo_binding_all_of.py b/intersight/model/inventory_dn_mo_binding_all_of.py index a919347fcd..d0cdb8a5b9 100644 --- a/intersight/model/inventory_dn_mo_binding_all_of.py +++ b/intersight/model/inventory_dn_mo_binding_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/inventory_dn_mo_binding_list.py b/intersight/model/inventory_dn_mo_binding_list.py index 681f3fc4e0..e7e991b45f 100644 --- a/intersight/model/inventory_dn_mo_binding_list.py +++ b/intersight/model/inventory_dn_mo_binding_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/inventory_dn_mo_binding_list_all_of.py b/intersight/model/inventory_dn_mo_binding_list_all_of.py index 3e4c7cf16d..2476ca9cff 100644 --- a/intersight/model/inventory_dn_mo_binding_list_all_of.py +++ b/intersight/model/inventory_dn_mo_binding_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/inventory_dn_mo_binding_response.py b/intersight/model/inventory_dn_mo_binding_response.py index 4d4495db3e..47dbae1fbd 100644 --- a/intersight/model/inventory_dn_mo_binding_response.py +++ b/intersight/model/inventory_dn_mo_binding_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/inventory_generic_inventory.py b/intersight/model/inventory_generic_inventory.py index 5da22a118d..f9c36cecc3 100644 --- a/intersight/model/inventory_generic_inventory.py +++ b/intersight/model/inventory_generic_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/inventory_generic_inventory_all_of.py b/intersight/model/inventory_generic_inventory_all_of.py index 7f5be7e150..b2cc814579 100644 --- a/intersight/model/inventory_generic_inventory_all_of.py +++ b/intersight/model/inventory_generic_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/inventory_generic_inventory_holder.py b/intersight/model/inventory_generic_inventory_holder.py index 56c7f54f5b..cd27f5bf61 100644 --- a/intersight/model/inventory_generic_inventory_holder.py +++ b/intersight/model/inventory_generic_inventory_holder.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/inventory_generic_inventory_holder_all_of.py b/intersight/model/inventory_generic_inventory_holder_all_of.py index 02be747473..11492bf8bb 100644 --- a/intersight/model/inventory_generic_inventory_holder_all_of.py +++ b/intersight/model/inventory_generic_inventory_holder_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/inventory_generic_inventory_holder_list.py b/intersight/model/inventory_generic_inventory_holder_list.py index 7c370522de..3ac52500f4 100644 --- a/intersight/model/inventory_generic_inventory_holder_list.py +++ b/intersight/model/inventory_generic_inventory_holder_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/inventory_generic_inventory_holder_list_all_of.py b/intersight/model/inventory_generic_inventory_holder_list_all_of.py index 49ebfc31f0..73abcc5316 100644 --- a/intersight/model/inventory_generic_inventory_holder_list_all_of.py +++ b/intersight/model/inventory_generic_inventory_holder_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/inventory_generic_inventory_holder_relationship.py b/intersight/model/inventory_generic_inventory_holder_relationship.py index f29e80007a..2d6bb8a028 100644 --- a/intersight/model/inventory_generic_inventory_holder_relationship.py +++ b/intersight/model/inventory_generic_inventory_holder_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 InventoryGenericInventoryHolderRelationship(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 InventoryGenericInventoryHolderRelationship(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 InventoryGenericInventoryHolderRelationship(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 InventoryGenericInventoryHolderRelationship(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 InventoryGenericInventoryHolderRelationship(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 InventoryGenericInventoryHolderRelationship(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 InventoryGenericInventoryHolderRelationship(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 InventoryGenericInventoryHolderRelationship(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 InventoryGenericInventoryHolderRelationship(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 InventoryGenericInventoryHolderRelationship(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/inventory_generic_inventory_holder_response.py b/intersight/model/inventory_generic_inventory_holder_response.py index a171b72318..b73fe58987 100644 --- a/intersight/model/inventory_generic_inventory_holder_response.py +++ b/intersight/model/inventory_generic_inventory_holder_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/inventory_generic_inventory_list.py b/intersight/model/inventory_generic_inventory_list.py index db3aecc3fa..867b37f411 100644 --- a/intersight/model/inventory_generic_inventory_list.py +++ b/intersight/model/inventory_generic_inventory_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/inventory_generic_inventory_list_all_of.py b/intersight/model/inventory_generic_inventory_list_all_of.py index fd2208a88b..2a2d505b60 100644 --- a/intersight/model/inventory_generic_inventory_list_all_of.py +++ b/intersight/model/inventory_generic_inventory_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/inventory_generic_inventory_relationship.py b/intersight/model/inventory_generic_inventory_relationship.py index 03b2ff0b57..8a3dcf1ba1 100644 --- a/intersight/model/inventory_generic_inventory_relationship.py +++ b/intersight/model/inventory_generic_inventory_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 InventoryGenericInventoryRelationship(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 InventoryGenericInventoryRelationship(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 InventoryGenericInventoryRelationship(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 InventoryGenericInventoryRelationship(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 InventoryGenericInventoryRelationship(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 InventoryGenericInventoryRelationship(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 InventoryGenericInventoryRelationship(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 InventoryGenericInventoryRelationship(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 InventoryGenericInventoryRelationship(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 InventoryGenericInventoryRelationship(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/inventory_generic_inventory_response.py b/intersight/model/inventory_generic_inventory_response.py index 41c372faf5..22e68fd00e 100644 --- a/intersight/model/inventory_generic_inventory_response.py +++ b/intersight/model/inventory_generic_inventory_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/inventory_inventory_mo.py b/intersight/model/inventory_inventory_mo.py index 04546180d4..ba805fe773 100644 --- a/intersight/model/inventory_inventory_mo.py +++ b/intersight/model/inventory_inventory_mo.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/inventory_inventory_mo_all_of.py b/intersight/model/inventory_inventory_mo_all_of.py index dbb0ceba6b..a73413a006 100644 --- a/intersight/model/inventory_inventory_mo_all_of.py +++ b/intersight/model/inventory_inventory_mo_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/inventory_request.py b/intersight/model/inventory_request.py index 6716f7b902..1fd8c363c3 100644 --- a/intersight/model/inventory_request.py +++ b/intersight/model/inventory_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/inventory_request_all_of.py b/intersight/model/inventory_request_all_of.py index 2236de2a79..3dac3a6ae6 100644 --- a/intersight/model/inventory_request_all_of.py +++ b/intersight/model/inventory_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/inventory_uem_info.py b/intersight/model/inventory_uem_info.py index 812ce2470f..c3ed96c059 100644 --- a/intersight/model/inventory_uem_info.py +++ b/intersight/model/inventory_uem_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/inventory_uem_info_all_of.py b/intersight/model/inventory_uem_info_all_of.py index 9ebb9acf89..6923eb1bd3 100644 --- a/intersight/model/inventory_uem_info_all_of.py +++ b/intersight/model/inventory_uem_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/ipmioverlan_policy.py b/intersight/model/ipmioverlan_policy.py index 7bd4ff25bc..19e505a046 100644 --- a/intersight/model/ipmioverlan_policy.py +++ b/intersight/model/ipmioverlan_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/ipmioverlan_policy_all_of.py b/intersight/model/ipmioverlan_policy_all_of.py index 0a50127bba..75d980f313 100644 --- a/intersight/model/ipmioverlan_policy_all_of.py +++ b/intersight/model/ipmioverlan_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/ipmioverlan_policy_list.py b/intersight/model/ipmioverlan_policy_list.py index 0cd0390a0e..f81f8767cb 100644 --- a/intersight/model/ipmioverlan_policy_list.py +++ b/intersight/model/ipmioverlan_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/ipmioverlan_policy_list_all_of.py b/intersight/model/ipmioverlan_policy_list_all_of.py index 26de66a854..45aa9653ff 100644 --- a/intersight/model/ipmioverlan_policy_list_all_of.py +++ b/intersight/model/ipmioverlan_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/ipmioverlan_policy_response.py b/intersight/model/ipmioverlan_policy_response.py index 27e526f12e..ff1dd9c474 100644 --- a/intersight/model/ipmioverlan_policy_response.py +++ b/intersight/model/ipmioverlan_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/ippool_block_lease.py b/intersight/model/ippool_block_lease.py index d43163b1a9..b8d8256849 100644 --- a/intersight/model/ippool_block_lease.py +++ b/intersight/model/ippool_block_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/ippool_block_lease_all_of.py b/intersight/model/ippool_block_lease_all_of.py index d840885e67..7c233b85ab 100644 --- a/intersight/model/ippool_block_lease_all_of.py +++ b/intersight/model/ippool_block_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/ippool_block_lease_list.py b/intersight/model/ippool_block_lease_list.py index 645ef5ee0d..8cbefd86d6 100644 --- a/intersight/model/ippool_block_lease_list.py +++ b/intersight/model/ippool_block_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/ippool_block_lease_list_all_of.py b/intersight/model/ippool_block_lease_list_all_of.py index b3d250316c..fbc63b3f3f 100644 --- a/intersight/model/ippool_block_lease_list_all_of.py +++ b/intersight/model/ippool_block_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/ippool_block_lease_relationship.py b/intersight/model/ippool_block_lease_relationship.py index a2060974c2..66221bf2e6 100644 --- a/intersight/model/ippool_block_lease_relationship.py +++ b/intersight/model/ippool_block_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 """ @@ -84,6 +84,8 @@ class IppoolBlockLeaseRelationship(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 IppoolBlockLeaseRelationship(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 IppoolBlockLeaseRelationship(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 IppoolBlockLeaseRelationship(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 IppoolBlockLeaseRelationship(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 IppoolBlockLeaseRelationship(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 IppoolBlockLeaseRelationship(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 IppoolBlockLeaseRelationship(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 IppoolBlockLeaseRelationship(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 IppoolBlockLeaseRelationship(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/ippool_block_lease_response.py b/intersight/model/ippool_block_lease_response.py index 23e3a37856..0324a44a17 100644 --- a/intersight/model/ippool_block_lease_response.py +++ b/intersight/model/ippool_block_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/ippool_ip_lease.py b/intersight/model/ippool_ip_lease.py index 0928194d84..a5e5245c26 100644 --- a/intersight/model/ippool_ip_lease.py +++ b/intersight/model/ippool_ip_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/ippool_ip_lease_all_of.py b/intersight/model/ippool_ip_lease_all_of.py index 8336e70b49..4b763a224e 100644 --- a/intersight/model/ippool_ip_lease_all_of.py +++ b/intersight/model/ippool_ip_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/ippool_ip_lease_list.py b/intersight/model/ippool_ip_lease_list.py index 13b463b5a7..8126f01d39 100644 --- a/intersight/model/ippool_ip_lease_list.py +++ b/intersight/model/ippool_ip_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/ippool_ip_lease_list_all_of.py b/intersight/model/ippool_ip_lease_list_all_of.py index 133063c18b..a771a367bb 100644 --- a/intersight/model/ippool_ip_lease_list_all_of.py +++ b/intersight/model/ippool_ip_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/ippool_ip_lease_relationship.py b/intersight/model/ippool_ip_lease_relationship.py index 434f60a0a0..78bc498a1e 100644 --- a/intersight/model/ippool_ip_lease_relationship.py +++ b/intersight/model/ippool_ip_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 """ @@ -94,6 +94,8 @@ class IppoolIpLeaseRelationship(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 IppoolIpLeaseRelationship(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 IppoolIpLeaseRelationship(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 IppoolIpLeaseRelationship(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 IppoolIpLeaseRelationship(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 IppoolIpLeaseRelationship(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 IppoolIpLeaseRelationship(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 IppoolIpLeaseRelationship(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 IppoolIpLeaseRelationship(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 IppoolIpLeaseRelationship(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/ippool_ip_lease_response.py b/intersight/model/ippool_ip_lease_response.py index 3fae76886f..5772fc0c35 100644 --- a/intersight/model/ippool_ip_lease_response.py +++ b/intersight/model/ippool_ip_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/ippool_ip_v4_block.py b/intersight/model/ippool_ip_v4_block.py index 635495d7d9..1c33745cb5 100644 --- a/intersight/model/ippool_ip_v4_block.py +++ b/intersight/model/ippool_ip_v4_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/ippool_ip_v4_block_all_of.py b/intersight/model/ippool_ip_v4_block_all_of.py index ed6a886444..a3dc34c915 100644 --- a/intersight/model/ippool_ip_v4_block_all_of.py +++ b/intersight/model/ippool_ip_v4_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/ippool_ip_v4_config.py b/intersight/model/ippool_ip_v4_config.py index 3e77a3a765..62a71a1863 100644 --- a/intersight/model/ippool_ip_v4_config.py +++ b/intersight/model/ippool_ip_v4_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 """ @@ -75,7 +75,7 @@ class IppoolIpV4Config(ModelComposed): }, ('netmask',): { 'regex': { - 'pattern': r'^$|^(((255.){3}(255|254|252|248|240|224|192|128|0+))|((255.){2}(255|254|252|248|240|224|192|128|0+).0)|((255.)(255|254|252|248|240|224|192|128|0+)(.0+){2})|((255|254|252|248|240|224|192|128|0+)(.0+){3}))$', # noqa: E501 + 'pattern': r'^$|^(((255\.){3}(255|254|252|248|240|224|192|128|0+))|((255\.){2}(255|254|252|248|240|224|192|128|0+)\.0)|((255\.)(255|254|252|248|240|224|192|128|0+)(\.0+){2})|((255|254|252|248|240|224|192|128|0+)(\.0+){3}))$', # noqa: E501 }, }, ('primary_dns',): { diff --git a/intersight/model/ippool_ip_v4_config_all_of.py b/intersight/model/ippool_ip_v4_config_all_of.py index fb306f9041..ada5844204 100644 --- a/intersight/model/ippool_ip_v4_config_all_of.py +++ b/intersight/model/ippool_ip_v4_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 """ @@ -69,7 +69,7 @@ class IppoolIpV4ConfigAllOf(ModelNormal): }, ('netmask',): { 'regex': { - 'pattern': r'^$|^(((255.){3}(255|254|252|248|240|224|192|128|0+))|((255.){2}(255|254|252|248|240|224|192|128|0+).0)|((255.)(255|254|252|248|240|224|192|128|0+)(.0+){2})|((255|254|252|248|240|224|192|128|0+)(.0+){3}))$', # noqa: E501 + 'pattern': r'^$|^(((255\.){3}(255|254|252|248|240|224|192|128|0+))|((255\.){2}(255|254|252|248|240|224|192|128|0+)\.0)|((255\.)(255|254|252|248|240|224|192|128|0+)(\.0+){2})|((255|254|252|248|240|224|192|128|0+)(\.0+){3}))$', # noqa: E501 }, }, ('primary_dns',): { diff --git a/intersight/model/ippool_ip_v6_block.py b/intersight/model/ippool_ip_v6_block.py index 4c81fa197c..7b05b626f1 100644 --- a/intersight/model/ippool_ip_v6_block.py +++ b/intersight/model/ippool_ip_v6_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/ippool_ip_v6_block_all_of.py b/intersight/model/ippool_ip_v6_block_all_of.py index ea2da4618b..83bf1f8c8b 100644 --- a/intersight/model/ippool_ip_v6_block_all_of.py +++ b/intersight/model/ippool_ip_v6_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/ippool_ip_v6_config.py b/intersight/model/ippool_ip_v6_config.py index 819f753881..ab6e9aaecc 100644 --- a/intersight/model/ippool_ip_v6_config.py +++ b/intersight/model/ippool_ip_v6_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/ippool_ip_v6_config_all_of.py b/intersight/model/ippool_ip_v6_config_all_of.py index fbc9b7d76c..e3c8b32953 100644 --- a/intersight/model/ippool_ip_v6_config_all_of.py +++ b/intersight/model/ippool_ip_v6_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/ippool_pool.py b/intersight/model/ippool_pool.py index c3c483c9f4..b7a019164c 100644 --- a/intersight/model/ippool_pool.py +++ b/intersight/model/ippool_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/ippool_pool_all_of.py b/intersight/model/ippool_pool_all_of.py index 3c0067500f..20cb94c2cc 100644 --- a/intersight/model/ippool_pool_all_of.py +++ b/intersight/model/ippool_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/ippool_pool_list.py b/intersight/model/ippool_pool_list.py index 9a7d2f59af..00ac3d8a8b 100644 --- a/intersight/model/ippool_pool_list.py +++ b/intersight/model/ippool_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/ippool_pool_list_all_of.py b/intersight/model/ippool_pool_list_all_of.py index 60f0078920..b15bb59a46 100644 --- a/intersight/model/ippool_pool_list_all_of.py +++ b/intersight/model/ippool_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/ippool_pool_member.py b/intersight/model/ippool_pool_member.py index ecf3148d72..88abab4734 100644 --- a/intersight/model/ippool_pool_member.py +++ b/intersight/model/ippool_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/ippool_pool_member_all_of.py b/intersight/model/ippool_pool_member_all_of.py index 7bf407ec9f..ed10e5a70e 100644 --- a/intersight/model/ippool_pool_member_all_of.py +++ b/intersight/model/ippool_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/ippool_pool_member_list.py b/intersight/model/ippool_pool_member_list.py index 4746ec94d3..4bd4452afa 100644 --- a/intersight/model/ippool_pool_member_list.py +++ b/intersight/model/ippool_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/ippool_pool_member_list_all_of.py b/intersight/model/ippool_pool_member_list_all_of.py index 574b79bad3..2beb9fd836 100644 --- a/intersight/model/ippool_pool_member_list_all_of.py +++ b/intersight/model/ippool_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/ippool_pool_member_relationship.py b/intersight/model/ippool_pool_member_relationship.py index 8aa28789b8..e02e5f37a2 100644 --- a/intersight/model/ippool_pool_member_relationship.py +++ b/intersight/model/ippool_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 """ @@ -82,6 +82,8 @@ class IppoolPoolMemberRelationship(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 IppoolPoolMemberRelationship(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 IppoolPoolMemberRelationship(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 IppoolPoolMemberRelationship(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 IppoolPoolMemberRelationship(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 IppoolPoolMemberRelationship(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 IppoolPoolMemberRelationship(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 IppoolPoolMemberRelationship(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 IppoolPoolMemberRelationship(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 IppoolPoolMemberRelationship(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/ippool_pool_member_response.py b/intersight/model/ippool_pool_member_response.py index c89b8fae1a..0f055eaaed 100644 --- a/intersight/model/ippool_pool_member_response.py +++ b/intersight/model/ippool_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/ippool_pool_relationship.py b/intersight/model/ippool_pool_relationship.py index 3c33a20aab..5fe287f068 100644 --- a/intersight/model/ippool_pool_relationship.py +++ b/intersight/model/ippool_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 """ @@ -88,6 +88,8 @@ class IppoolPoolRelationship(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 IppoolPoolRelationship(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 IppoolPoolRelationship(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 IppoolPoolRelationship(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 IppoolPoolRelationship(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 IppoolPoolRelationship(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 IppoolPoolRelationship(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 IppoolPoolRelationship(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 IppoolPoolRelationship(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 IppoolPoolRelationship(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/ippool_pool_response.py b/intersight/model/ippool_pool_response.py index 44b9103ba6..e47557ea7d 100644 --- a/intersight/model/ippool_pool_response.py +++ b/intersight/model/ippool_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/ippool_shadow_block.py b/intersight/model/ippool_shadow_block.py index 9f6d3282c4..b1f87aed49 100644 --- a/intersight/model/ippool_shadow_block.py +++ b/intersight/model/ippool_shadow_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/ippool_shadow_block_all_of.py b/intersight/model/ippool_shadow_block_all_of.py index 620c8915e7..5ce7293044 100644 --- a/intersight/model/ippool_shadow_block_all_of.py +++ b/intersight/model/ippool_shadow_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/ippool_shadow_block_list.py b/intersight/model/ippool_shadow_block_list.py index 60769910ff..f6739edfec 100644 --- a/intersight/model/ippool_shadow_block_list.py +++ b/intersight/model/ippool_shadow_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/ippool_shadow_block_list_all_of.py b/intersight/model/ippool_shadow_block_list_all_of.py index 6c0cc0584b..585520fa02 100644 --- a/intersight/model/ippool_shadow_block_list_all_of.py +++ b/intersight/model/ippool_shadow_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/ippool_shadow_block_relationship.py b/intersight/model/ippool_shadow_block_relationship.py index 13da5cefd4..7f453c70f5 100644 --- a/intersight/model/ippool_shadow_block_relationship.py +++ b/intersight/model/ippool_shadow_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 """ @@ -82,6 +82,8 @@ class IppoolShadowBlockRelationship(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 IppoolShadowBlockRelationship(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 IppoolShadowBlockRelationship(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 IppoolShadowBlockRelationship(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 IppoolShadowBlockRelationship(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 IppoolShadowBlockRelationship(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 IppoolShadowBlockRelationship(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 IppoolShadowBlockRelationship(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 IppoolShadowBlockRelationship(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 IppoolShadowBlockRelationship(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/ippool_shadow_block_response.py b/intersight/model/ippool_shadow_block_response.py index 5d46fc7140..64d0efa719 100644 --- a/intersight/model/ippool_shadow_block_response.py +++ b/intersight/model/ippool_shadow_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/ippool_shadow_pool.py b/intersight/model/ippool_shadow_pool.py index 95c0aad8ca..336958b385 100644 --- a/intersight/model/ippool_shadow_pool.py +++ b/intersight/model/ippool_shadow_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/ippool_shadow_pool_all_of.py b/intersight/model/ippool_shadow_pool_all_of.py index 395558a3e1..abf57e67c5 100644 --- a/intersight/model/ippool_shadow_pool_all_of.py +++ b/intersight/model/ippool_shadow_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/ippool_shadow_pool_list.py b/intersight/model/ippool_shadow_pool_list.py index c8ebb11934..08be2bd03f 100644 --- a/intersight/model/ippool_shadow_pool_list.py +++ b/intersight/model/ippool_shadow_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/ippool_shadow_pool_list_all_of.py b/intersight/model/ippool_shadow_pool_list_all_of.py index 174669ee82..2bec92d459 100644 --- a/intersight/model/ippool_shadow_pool_list_all_of.py +++ b/intersight/model/ippool_shadow_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/ippool_shadow_pool_relationship.py b/intersight/model/ippool_shadow_pool_relationship.py index 6fa3b537d4..a4be15454f 100644 --- a/intersight/model/ippool_shadow_pool_relationship.py +++ b/intersight/model/ippool_shadow_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 """ @@ -90,6 +90,8 @@ class IppoolShadowPoolRelationship(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 IppoolShadowPoolRelationship(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 IppoolShadowPoolRelationship(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 IppoolShadowPoolRelationship(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 IppoolShadowPoolRelationship(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 IppoolShadowPoolRelationship(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 IppoolShadowPoolRelationship(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 IppoolShadowPoolRelationship(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 IppoolShadowPoolRelationship(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 IppoolShadowPoolRelationship(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/ippool_shadow_pool_response.py b/intersight/model/ippool_shadow_pool_response.py index 40c99cdebe..cc2429238d 100644 --- a/intersight/model/ippool_shadow_pool_response.py +++ b/intersight/model/ippool_shadow_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/ippool_universe.py b/intersight/model/ippool_universe.py index ae862d5777..c5d9caeb43 100644 --- a/intersight/model/ippool_universe.py +++ b/intersight/model/ippool_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/ippool_universe_all_of.py b/intersight/model/ippool_universe_all_of.py index 876b719317..dc021022c1 100644 --- a/intersight/model/ippool_universe_all_of.py +++ b/intersight/model/ippool_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/ippool_universe_list.py b/intersight/model/ippool_universe_list.py index d7eed50b21..401bcf62e8 100644 --- a/intersight/model/ippool_universe_list.py +++ b/intersight/model/ippool_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/ippool_universe_list_all_of.py b/intersight/model/ippool_universe_list_all_of.py index 08d3b25252..abd2cd730d 100644 --- a/intersight/model/ippool_universe_list_all_of.py +++ b/intersight/model/ippool_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/ippool_universe_relationship.py b/intersight/model/ippool_universe_relationship.py index bbcd7457df..da6739d937 100644 --- a/intersight/model/ippool_universe_relationship.py +++ b/intersight/model/ippool_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 IppoolUniverseRelationship(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 IppoolUniverseRelationship(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 IppoolUniverseRelationship(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 IppoolUniverseRelationship(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 IppoolUniverseRelationship(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 IppoolUniverseRelationship(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 IppoolUniverseRelationship(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 IppoolUniverseRelationship(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 IppoolUniverseRelationship(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 IppoolUniverseRelationship(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/ippool_universe_response.py b/intersight/model/ippool_universe_response.py index 5fcff79af1..cc8efc5008 100644 --- a/intersight/model/ippool_universe_response.py +++ b/intersight/model/ippool_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/iqnpool_block.py b/intersight/model/iqnpool_block.py index 436120ae23..0f50cc0ecd 100644 --- a/intersight/model/iqnpool_block.py +++ b/intersight/model/iqnpool_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/iqnpool_block_all_of.py b/intersight/model/iqnpool_block_all_of.py index 24bbeff336..45c23c7e67 100644 --- a/intersight/model/iqnpool_block_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_block_list.py b/intersight/model/iqnpool_block_list.py index ecc35f1a32..4332258f09 100644 --- a/intersight/model/iqnpool_block_list.py +++ b/intersight/model/iqnpool_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/iqnpool_block_list_all_of.py b/intersight/model/iqnpool_block_list_all_of.py index d4857f862b..0669119a82 100644 --- a/intersight/model/iqnpool_block_list_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_block_relationship.py b/intersight/model/iqnpool_block_relationship.py index 9923a8658c..b2e2e6b9a8 100644 --- a/intersight/model/iqnpool_block_relationship.py +++ b/intersight/model/iqnpool_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 IqnpoolBlockRelationship(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 IqnpoolBlockRelationship(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 IqnpoolBlockRelationship(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 IqnpoolBlockRelationship(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 IqnpoolBlockRelationship(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 IqnpoolBlockRelationship(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 IqnpoolBlockRelationship(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 IqnpoolBlockRelationship(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 IqnpoolBlockRelationship(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 IqnpoolBlockRelationship(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/iqnpool_block_response.py b/intersight/model/iqnpool_block_response.py index 46be42c72b..2cdcf33d18 100644 --- a/intersight/model/iqnpool_block_response.py +++ b/intersight/model/iqnpool_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/iqnpool_iqn_suffix_block.py b/intersight/model/iqnpool_iqn_suffix_block.py index eab9be119a..6fa19d9832 100644 --- a/intersight/model/iqnpool_iqn_suffix_block.py +++ b/intersight/model/iqnpool_iqn_suffix_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 """ @@ -69,7 +69,7 @@ class IqnpoolIqnSuffixBlock(ModelComposed): validations = { ('_from',): { - 'inclusive_minimum': 1, + 'inclusive_minimum': 0, }, ('size',): { 'inclusive_maximum': 1000, diff --git a/intersight/model/iqnpool_iqn_suffix_block_all_of.py b/intersight/model/iqnpool_iqn_suffix_block_all_of.py index 43c7dabc3f..8d4471be54 100644 --- a/intersight/model/iqnpool_iqn_suffix_block_all_of.py +++ b/intersight/model/iqnpool_iqn_suffix_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 """ @@ -63,7 +63,7 @@ class IqnpoolIqnSuffixBlockAllOf(ModelNormal): validations = { ('_from',): { - 'inclusive_minimum': 1, + 'inclusive_minimum': 0, }, } diff --git a/intersight/model/iqnpool_lease.py b/intersight/model/iqnpool_lease.py index a55ea0abf2..f9238d810a 100644 --- a/intersight/model/iqnpool_lease.py +++ b/intersight/model/iqnpool_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/iqnpool_lease_all_of.py b/intersight/model/iqnpool_lease_all_of.py index af772432ab..66eda33ede 100644 --- a/intersight/model/iqnpool_lease_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_lease_list.py b/intersight/model/iqnpool_lease_list.py index 64d281af32..e9e8b7c69a 100644 --- a/intersight/model/iqnpool_lease_list.py +++ b/intersight/model/iqnpool_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/iqnpool_lease_list_all_of.py b/intersight/model/iqnpool_lease_list_all_of.py index 1422861f97..1c55d49729 100644 --- a/intersight/model/iqnpool_lease_list_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_lease_relationship.py b/intersight/model/iqnpool_lease_relationship.py index 91c4b06ad4..efde403849 100644 --- a/intersight/model/iqnpool_lease_relationship.py +++ b/intersight/model/iqnpool_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 IqnpoolLeaseRelationship(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 IqnpoolLeaseRelationship(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 IqnpoolLeaseRelationship(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 IqnpoolLeaseRelationship(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 IqnpoolLeaseRelationship(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 IqnpoolLeaseRelationship(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 IqnpoolLeaseRelationship(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 IqnpoolLeaseRelationship(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 IqnpoolLeaseRelationship(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 IqnpoolLeaseRelationship(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/iqnpool_lease_response.py b/intersight/model/iqnpool_lease_response.py index 0f8a3924f1..0536c340a3 100644 --- a/intersight/model/iqnpool_lease_response.py +++ b/intersight/model/iqnpool_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/iqnpool_pool.py b/intersight/model/iqnpool_pool.py index 5f71113ac2..cd591f464a 100644 --- a/intersight/model/iqnpool_pool.py +++ b/intersight/model/iqnpool_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/iqnpool_pool_all_of.py b/intersight/model/iqnpool_pool_all_of.py index a7e1a3d65b..96a5b73774 100644 --- a/intersight/model/iqnpool_pool_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_pool_list.py b/intersight/model/iqnpool_pool_list.py index 3052c4ee8d..3aec31f2b2 100644 --- a/intersight/model/iqnpool_pool_list.py +++ b/intersight/model/iqnpool_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/iqnpool_pool_list_all_of.py b/intersight/model/iqnpool_pool_list_all_of.py index d052b989c4..9ea02c4b64 100644 --- a/intersight/model/iqnpool_pool_list_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_pool_member.py b/intersight/model/iqnpool_pool_member.py index 274e9019e0..ec44582107 100644 --- a/intersight/model/iqnpool_pool_member.py +++ b/intersight/model/iqnpool_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/iqnpool_pool_member_all_of.py b/intersight/model/iqnpool_pool_member_all_of.py index 908e672b10..74c67a7d40 100644 --- a/intersight/model/iqnpool_pool_member_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_pool_member_list.py b/intersight/model/iqnpool_pool_member_list.py index cbdad12d51..1d3109e18c 100644 --- a/intersight/model/iqnpool_pool_member_list.py +++ b/intersight/model/iqnpool_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/iqnpool_pool_member_list_all_of.py b/intersight/model/iqnpool_pool_member_list_all_of.py index c67ddae29b..dd41c3ca5b 100644 --- a/intersight/model/iqnpool_pool_member_list_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_pool_member_relationship.py b/intersight/model/iqnpool_pool_member_relationship.py index a07cd294cc..d508068c9b 100644 --- a/intersight/model/iqnpool_pool_member_relationship.py +++ b/intersight/model/iqnpool_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 IqnpoolPoolMemberRelationship(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 IqnpoolPoolMemberRelationship(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 IqnpoolPoolMemberRelationship(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 IqnpoolPoolMemberRelationship(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 IqnpoolPoolMemberRelationship(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 IqnpoolPoolMemberRelationship(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 IqnpoolPoolMemberRelationship(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 IqnpoolPoolMemberRelationship(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 IqnpoolPoolMemberRelationship(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 IqnpoolPoolMemberRelationship(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/iqnpool_pool_member_response.py b/intersight/model/iqnpool_pool_member_response.py index 79882094db..dc915c305a 100644 --- a/intersight/model/iqnpool_pool_member_response.py +++ b/intersight/model/iqnpool_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/iqnpool_pool_relationship.py b/intersight/model/iqnpool_pool_relationship.py index 046695b192..624ea23be2 100644 --- a/intersight/model/iqnpool_pool_relationship.py +++ b/intersight/model/iqnpool_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 IqnpoolPoolRelationship(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 IqnpoolPoolRelationship(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 IqnpoolPoolRelationship(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 IqnpoolPoolRelationship(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 IqnpoolPoolRelationship(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 IqnpoolPoolRelationship(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 IqnpoolPoolRelationship(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 IqnpoolPoolRelationship(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 IqnpoolPoolRelationship(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 IqnpoolPoolRelationship(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/iqnpool_pool_response.py b/intersight/model/iqnpool_pool_response.py index 5591aa07e0..0d72d4f450 100644 --- a/intersight/model/iqnpool_pool_response.py +++ b/intersight/model/iqnpool_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/iqnpool_universe.py b/intersight/model/iqnpool_universe.py index 92ceab8c49..81a60d49a8 100644 --- a/intersight/model/iqnpool_universe.py +++ b/intersight/model/iqnpool_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/iqnpool_universe_all_of.py b/intersight/model/iqnpool_universe_all_of.py index 7a2b3856eb..8ac9b85883 100644 --- a/intersight/model/iqnpool_universe_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_universe_list.py b/intersight/model/iqnpool_universe_list.py index bf89cb89a1..77b971ccf7 100644 --- a/intersight/model/iqnpool_universe_list.py +++ b/intersight/model/iqnpool_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/iqnpool_universe_list_all_of.py b/intersight/model/iqnpool_universe_list_all_of.py index c5f5984eca..c6c7c9ad01 100644 --- a/intersight/model/iqnpool_universe_list_all_of.py +++ b/intersight/model/iqnpool_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/iqnpool_universe_relationship.py b/intersight/model/iqnpool_universe_relationship.py index 7fb13db3cc..aadeac3610 100644 --- a/intersight/model/iqnpool_universe_relationship.py +++ b/intersight/model/iqnpool_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 IqnpoolUniverseRelationship(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 IqnpoolUniverseRelationship(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 IqnpoolUniverseRelationship(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 IqnpoolUniverseRelationship(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 IqnpoolUniverseRelationship(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 IqnpoolUniverseRelationship(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 IqnpoolUniverseRelationship(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 IqnpoolUniverseRelationship(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 IqnpoolUniverseRelationship(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 IqnpoolUniverseRelationship(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/iqnpool_universe_response.py b/intersight/model/iqnpool_universe_response.py index 3ac581a5d4..d5a41a3e55 100644 --- a/intersight/model/iqnpool_universe_response.py +++ b/intersight/model/iqnpool_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/iwotenant_tenant_status.py b/intersight/model/iwotenant_tenant_status.py index 97ebee3cf7..0b057cbfba 100644 --- a/intersight/model/iwotenant_tenant_status.py +++ b/intersight/model/iwotenant_tenant_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/iwotenant_tenant_status_all_of.py b/intersight/model/iwotenant_tenant_status_all_of.py index f152caff8b..816aadda3f 100644 --- a/intersight/model/iwotenant_tenant_status_all_of.py +++ b/intersight/model/iwotenant_tenant_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/iwotenant_tenant_status_list.py b/intersight/model/iwotenant_tenant_status_list.py index 6b974cd746..8c4bddd79b 100644 --- a/intersight/model/iwotenant_tenant_status_list.py +++ b/intersight/model/iwotenant_tenant_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/iwotenant_tenant_status_list_all_of.py b/intersight/model/iwotenant_tenant_status_list_all_of.py index afb24af9b8..addd3ddbab 100644 --- a/intersight/model/iwotenant_tenant_status_list_all_of.py +++ b/intersight/model/iwotenant_tenant_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/iwotenant_tenant_status_response.py b/intersight/model/iwotenant_tenant_status_response.py index 1fd540e004..1af99abd70 100644 --- a/intersight/model/iwotenant_tenant_status_response.py +++ b/intersight/model/iwotenant_tenant_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/kubernetes_abstract_daemon_set.py b/intersight/model/kubernetes_abstract_daemon_set.py index 19cb68e498..ead4b390a0 100644 --- a/intersight/model/kubernetes_abstract_daemon_set.py +++ b/intersight/model/kubernetes_abstract_daemon_set.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_abstract_deployment.py b/intersight/model/kubernetes_abstract_deployment.py index bce774ec41..bf25aef121 100644 --- a/intersight/model/kubernetes_abstract_deployment.py +++ b/intersight/model/kubernetes_abstract_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/kubernetes_abstract_ingress.py b/intersight/model/kubernetes_abstract_ingress.py index 6fe1838405..9d33bd9220 100644 --- a/intersight/model/kubernetes_abstract_ingress.py +++ b/intersight/model/kubernetes_abstract_ingress.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_abstract_node.py b/intersight/model/kubernetes_abstract_node.py index f643bc2d7b..0211c9d039 100644 --- a/intersight/model/kubernetes_abstract_node.py +++ b/intersight/model/kubernetes_abstract_node.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_abstract_node_all_of.py b/intersight/model/kubernetes_abstract_node_all_of.py index cace0b9743..ef5593ca43 100644 --- a/intersight/model/kubernetes_abstract_node_all_of.py +++ b/intersight/model/kubernetes_abstract_node_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_abstract_pod.py b/intersight/model/kubernetes_abstract_pod.py index 74f4786aaf..33f942b4f3 100644 --- a/intersight/model/kubernetes_abstract_pod.py +++ b/intersight/model/kubernetes_abstract_pod.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_abstract_service.py b/intersight/model/kubernetes_abstract_service.py index 3a02172e7f..e74772b4ac 100644 --- a/intersight/model/kubernetes_abstract_service.py +++ b/intersight/model/kubernetes_abstract_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/kubernetes_abstract_stateful_set.py b/intersight/model/kubernetes_abstract_stateful_set.py index c61f9df999..bbfefdc76d 100644 --- a/intersight/model/kubernetes_abstract_stateful_set.py +++ b/intersight/model/kubernetes_abstract_stateful_set.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_aci_cni_apic.py b/intersight/model/kubernetes_aci_cni_apic.py index 679bccdcb5..10925f3fe9 100644 --- a/intersight/model/kubernetes_aci_cni_apic.py +++ b/intersight/model/kubernetes_aci_cni_apic.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_aci_cni_apic_all_of.py b/intersight/model/kubernetes_aci_cni_apic_all_of.py index 37f607f380..e7258ff8a9 100644 --- a/intersight/model/kubernetes_aci_cni_apic_all_of.py +++ b/intersight/model/kubernetes_aci_cni_apic_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_aci_cni_apic_list.py b/intersight/model/kubernetes_aci_cni_apic_list.py index fb9f100964..95c5fe54fc 100644 --- a/intersight/model/kubernetes_aci_cni_apic_list.py +++ b/intersight/model/kubernetes_aci_cni_apic_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/kubernetes_aci_cni_apic_list_all_of.py b/intersight/model/kubernetes_aci_cni_apic_list_all_of.py index 75c3013cf9..0d47183470 100644 --- a/intersight/model/kubernetes_aci_cni_apic_list_all_of.py +++ b/intersight/model/kubernetes_aci_cni_apic_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/kubernetes_aci_cni_apic_response.py b/intersight/model/kubernetes_aci_cni_apic_response.py index d0b063bff7..cce526f199 100644 --- a/intersight/model/kubernetes_aci_cni_apic_response.py +++ b/intersight/model/kubernetes_aci_cni_apic_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/kubernetes_aci_cni_profile.py b/intersight/model/kubernetes_aci_cni_profile.py index d1ca81189a..c98012a861 100644 --- a/intersight/model/kubernetes_aci_cni_profile.py +++ b/intersight/model/kubernetes_aci_cni_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/kubernetes_aci_cni_profile_all_of.py b/intersight/model/kubernetes_aci_cni_profile_all_of.py index a7f82499d1..06e70327cc 100644 --- a/intersight/model/kubernetes_aci_cni_profile_all_of.py +++ b/intersight/model/kubernetes_aci_cni_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/kubernetes_aci_cni_profile_list.py b/intersight/model/kubernetes_aci_cni_profile_list.py index a370e79d2a..3a6c134d3b 100644 --- a/intersight/model/kubernetes_aci_cni_profile_list.py +++ b/intersight/model/kubernetes_aci_cni_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/kubernetes_aci_cni_profile_list_all_of.py b/intersight/model/kubernetes_aci_cni_profile_list_all_of.py index 64d3648ccb..3bda319c94 100644 --- a/intersight/model/kubernetes_aci_cni_profile_list_all_of.py +++ b/intersight/model/kubernetes_aci_cni_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/kubernetes_aci_cni_profile_relationship.py b/intersight/model/kubernetes_aci_cni_profile_relationship.py index 8efb6acdce..92aeb5b3cf 100644 --- a/intersight/model/kubernetes_aci_cni_profile_relationship.py +++ b/intersight/model/kubernetes_aci_cni_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 """ @@ -85,6 +85,8 @@ class KubernetesAciCniProfileRelationship(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 KubernetesAciCniProfileRelationship(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 KubernetesAciCniProfileRelationship(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 KubernetesAciCniProfileRelationship(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 KubernetesAciCniProfileRelationship(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 KubernetesAciCniProfileRelationship(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 KubernetesAciCniProfileRelationship(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 KubernetesAciCniProfileRelationship(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 KubernetesAciCniProfileRelationship(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 KubernetesAciCniProfileRelationship(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/kubernetes_aci_cni_profile_response.py b/intersight/model/kubernetes_aci_cni_profile_response.py index caf8db7318..dfcc14f642 100644 --- a/intersight/model/kubernetes_aci_cni_profile_response.py +++ b/intersight/model/kubernetes_aci_cni_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/kubernetes_aci_cni_tenant_cluster_allocation.py b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation.py index 9edfcf7876..803b7b8873 100644 --- a/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation.py +++ b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_all_of.py b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_all_of.py index eebe29a153..ea33dc5ad8 100644 --- a/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_all_of.py +++ b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_list.py b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_list.py index 789a7224d4..5ab69ac18d 100644 --- a/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_list.py +++ b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_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/kubernetes_aci_cni_tenant_cluster_allocation_list_all_of.py b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_list_all_of.py index 8a6ea612ed..3e54dea270 100644 --- a/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_list_all_of.py +++ b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_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/kubernetes_aci_cni_tenant_cluster_allocation_relationship.py b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_relationship.py index c6fea32d29..5f0008c9b4 100644 --- a/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_relationship.py +++ b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_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 KubernetesAciCniTenantClusterAllocationRelationship(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 KubernetesAciCniTenantClusterAllocationRelationship(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 KubernetesAciCniTenantClusterAllocationRelationship(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 KubernetesAciCniTenantClusterAllocationRelationship(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 KubernetesAciCniTenantClusterAllocationRelationship(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 KubernetesAciCniTenantClusterAllocationRelationship(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 KubernetesAciCniTenantClusterAllocationRelationship(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 KubernetesAciCniTenantClusterAllocationRelationship(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 KubernetesAciCniTenantClusterAllocationRelationship(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 KubernetesAciCniTenantClusterAllocationRelationship(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/kubernetes_aci_cni_tenant_cluster_allocation_response.py b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_response.py index 1d4457035c..786f38910e 100644 --- a/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_response.py +++ b/intersight/model/kubernetes_aci_cni_tenant_cluster_allocation_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/kubernetes_action_info.py b/intersight/model/kubernetes_action_info.py index d9caaf8426..7df6c3923d 100644 --- a/intersight/model/kubernetes_action_info.py +++ b/intersight/model/kubernetes_action_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/kubernetes_action_info_all_of.py b/intersight/model/kubernetes_action_info_all_of.py index b01565240a..a84cc61ba2 100644 --- a/intersight/model/kubernetes_action_info_all_of.py +++ b/intersight/model/kubernetes_action_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/kubernetes_addon.py b/intersight/model/kubernetes_addon.py index 198cf8ed02..e9d6c8cdbd 100644 --- a/intersight/model/kubernetes_addon.py +++ b/intersight/model/kubernetes_addon.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_addon_all_of.py b/intersight/model/kubernetes_addon_all_of.py index a28b1d8e4d..f6a1f78f7e 100644 --- a/intersight/model/kubernetes_addon_all_of.py +++ b/intersight/model/kubernetes_addon_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_addon_configuration.py b/intersight/model/kubernetes_addon_configuration.py index c64c23e546..82ee7e2297 100644 --- a/intersight/model/kubernetes_addon_configuration.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_configuration_all_of.py b/intersight/model/kubernetes_addon_configuration_all_of.py index 7ad010ccd7..ab323e97a5 100644 --- a/intersight/model/kubernetes_addon_configuration_all_of.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_definition.py b/intersight/model/kubernetes_addon_definition.py index 35f3bd408e..4d0ca13f44 100644 --- a/intersight/model/kubernetes_addon_definition.py +++ b/intersight/model/kubernetes_addon_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 """ @@ -94,6 +94,7 @@ class KubernetesAddonDefinition(ModelComposed): 'None': None, 'ESSENTIAL': "Essential", 'TECHPREVIEW': "TechPreview", + 'CSI': "CSI", }, ('platforms',): { 'None': None, @@ -187,6 +188,7 @@ def openapi_types(): 'icon_url': (str,), # noqa: E501 'labels': ([str], none_type,), # noqa: E501 'name': (str,), # noqa: E501 + 'overrides': (str,), # noqa: E501 'platforms': ([str], none_type,), # noqa: E501 'version': (str,), # noqa: E501 'catalog': (KubernetesCatalogRelationship,), # noqa: E501 @@ -226,6 +228,7 @@ def discriminator(): 'icon_url': 'IconUrl', # noqa: E501 'labels': 'Labels', # noqa: E501 'name': 'Name', # noqa: E501 + 'overrides': 'Overrides', # noqa: E501 'platforms': 'Platforms', # noqa: E501 'version': 'Version', # noqa: E501 'catalog': 'Catalog', # noqa: E501 @@ -305,6 +308,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 icon_url (str): Icon used to represent the addon in UI.. [optional] # noqa: E501 labels ([str], none_type): [optional] # noqa: E501 name (str): Name of an addon component.. [optional] # noqa: E501 + overrides (str): Properties that can be overridden for an addon.. [optional] # noqa: E501 platforms ([str], none_type): [optional] # noqa: E501 version (str): Version of the addon component.. [optional] # noqa: E501 catalog (KubernetesCatalogRelationship): [optional] # noqa: E501 diff --git a/intersight/model/kubernetes_addon_definition_all_of.py b/intersight/model/kubernetes_addon_definition_all_of.py index 7e74ac0d20..139d689ccf 100644 --- a/intersight/model/kubernetes_addon_definition_all_of.py +++ b/intersight/model/kubernetes_addon_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 """ @@ -82,6 +82,7 @@ class KubernetesAddonDefinitionAllOf(ModelNormal): 'None': None, 'ESSENTIAL': "Essential", 'TECHPREVIEW': "TechPreview", + 'CSI': "CSI", }, ('platforms',): { 'None': None, @@ -168,6 +169,7 @@ def openapi_types(): 'icon_url': (str,), # noqa: E501 'labels': ([str], none_type,), # noqa: E501 'name': (str,), # noqa: E501 + 'overrides': (str,), # noqa: E501 'platforms': ([str], none_type,), # noqa: E501 'version': (str,), # noqa: E501 'catalog': (KubernetesCatalogRelationship,), # noqa: E501 @@ -191,6 +193,7 @@ def discriminator(): 'icon_url': 'IconUrl', # noqa: E501 'labels': 'Labels', # noqa: E501 'name': 'Name', # noqa: E501 + 'overrides': 'Overrides', # noqa: E501 'platforms': 'Platforms', # noqa: E501 'version': 'Version', # noqa: E501 'catalog': 'Catalog', # noqa: E501 @@ -256,6 +259,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 icon_url (str): Icon used to represent the addon in UI.. [optional] # noqa: E501 labels ([str], none_type): [optional] # noqa: E501 name (str): Name of an addon component.. [optional] # noqa: E501 + overrides (str): Properties that can be overridden for an addon.. [optional] # noqa: E501 platforms ([str], none_type): [optional] # noqa: E501 version (str): Version of the addon component.. [optional] # noqa: E501 catalog (KubernetesCatalogRelationship): [optional] # noqa: E501 diff --git a/intersight/model/kubernetes_addon_definition_list.py b/intersight/model/kubernetes_addon_definition_list.py index 64b440ae03..839521595c 100644 --- a/intersight/model/kubernetes_addon_definition_list.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_definition_list_all_of.py b/intersight/model/kubernetes_addon_definition_list_all_of.py index fc3d3525c0..64997d90fc 100644 --- a/intersight/model/kubernetes_addon_definition_list_all_of.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_definition_relationship.py b/intersight/model/kubernetes_addon_definition_relationship.py index 0ded57faef..21d4b96a44 100644 --- a/intersight/model/kubernetes_addon_definition_relationship.py +++ b/intersight/model/kubernetes_addon_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 """ @@ -91,6 +91,7 @@ class KubernetesAddonDefinitionRelationship(ModelComposed): 'None': None, 'ESSENTIAL': "Essential", 'TECHPREVIEW': "TechPreview", + 'CSI': "CSI", }, ('platforms',): { 'None': None, @@ -147,6 +148,8 @@ class KubernetesAddonDefinitionRelationship(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", @@ -163,6 +166,7 @@ class KubernetesAddonDefinitionRelationship(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", @@ -211,9 +215,12 @@ class KubernetesAddonDefinitionRelationship(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", @@ -277,10 +284,6 @@ class KubernetesAddonDefinitionRelationship(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", @@ -289,6 +292,7 @@ class KubernetesAddonDefinitionRelationship(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", @@ -537,6 +541,7 @@ class KubernetesAddonDefinitionRelationship(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", @@ -706,6 +711,11 @@ class KubernetesAddonDefinitionRelationship(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", @@ -821,6 +831,7 @@ class KubernetesAddonDefinitionRelationship(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", @@ -852,6 +863,7 @@ class KubernetesAddonDefinitionRelationship(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", @@ -884,12 +896,14 @@ class KubernetesAddonDefinitionRelationship(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", }, } @@ -944,6 +958,7 @@ def openapi_types(): 'icon_url': (str,), # noqa: E501 'labels': ([str], none_type,), # noqa: E501 'name': (str,), # noqa: E501 + 'overrides': (str,), # noqa: E501 'platforms': ([str], none_type,), # noqa: E501 'version': (str,), # noqa: E501 'catalog': (KubernetesCatalogRelationship,), # noqa: E501 @@ -988,6 +1003,7 @@ def discriminator(): 'icon_url': 'IconUrl', # noqa: E501 'labels': 'Labels', # noqa: E501 'name': 'Name', # noqa: E501 + 'overrides': 'Overrides', # noqa: E501 'platforms': 'Platforms', # noqa: E501 'version': 'Version', # noqa: E501 'catalog': 'Catalog', # noqa: E501 @@ -1069,6 +1085,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 icon_url (str): Icon used to represent the addon in UI.. [optional] # noqa: E501 labels ([str], none_type): [optional] # noqa: E501 name (str): Name of an addon component.. [optional] # noqa: E501 + overrides (str): Properties that can be overridden for an addon.. [optional] # noqa: E501 platforms ([str], none_type): [optional] # noqa: E501 version (str): Version of the addon component.. [optional] # noqa: E501 catalog (KubernetesCatalogRelationship): [optional] # noqa: E501 diff --git a/intersight/model/kubernetes_addon_definition_response.py b/intersight/model/kubernetes_addon_definition_response.py index f824b69365..f4cd948f38 100644 --- a/intersight/model/kubernetes_addon_definition_response.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_policy.py b/intersight/model/kubernetes_addon_policy.py index 27b4afc40f..bac29595bb 100644 --- a/intersight/model/kubernetes_addon_policy.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_policy_all_of.py b/intersight/model/kubernetes_addon_policy_all_of.py index b0a994ae3a..e0160cc1be 100644 --- a/intersight/model/kubernetes_addon_policy_all_of.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_policy_list.py b/intersight/model/kubernetes_addon_policy_list.py index 4b1c4b8c94..7a9069b9e6 100644 --- a/intersight/model/kubernetes_addon_policy_list.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_policy_list_all_of.py b/intersight/model/kubernetes_addon_policy_list_all_of.py index f266eb642b..f27a4eeed2 100644 --- a/intersight/model/kubernetes_addon_policy_list_all_of.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_policy_response.py b/intersight/model/kubernetes_addon_policy_response.py index f81a4be2a4..be0a317818 100644 --- a/intersight/model/kubernetes_addon_policy_response.py +++ b/intersight/model/kubernetes_addon_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/kubernetes_addon_repository.py b/intersight/model/kubernetes_addon_repository.py index b829c71f00..0cbc05c137 100644 --- a/intersight/model/kubernetes_addon_repository.py +++ b/intersight/model/kubernetes_addon_repository.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_addon_repository_all_of.py b/intersight/model/kubernetes_addon_repository_all_of.py index a91421b926..24972c3143 100644 --- a/intersight/model/kubernetes_addon_repository_all_of.py +++ b/intersight/model/kubernetes_addon_repository_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_addon_repository_list.py b/intersight/model/kubernetes_addon_repository_list.py index 2da450389f..587dc405f2 100644 --- a/intersight/model/kubernetes_addon_repository_list.py +++ b/intersight/model/kubernetes_addon_repository_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/kubernetes_addon_repository_list_all_of.py b/intersight/model/kubernetes_addon_repository_list_all_of.py index 93c936c4f1..a7082071c3 100644 --- a/intersight/model/kubernetes_addon_repository_list_all_of.py +++ b/intersight/model/kubernetes_addon_repository_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/kubernetes_addon_repository_response.py b/intersight/model/kubernetes_addon_repository_response.py index 8503db69f0..df55bb51ab 100644 --- a/intersight/model/kubernetes_addon_repository_response.py +++ b/intersight/model/kubernetes_addon_repository_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/kubernetes_baremetal_network_info.py b/intersight/model/kubernetes_baremetal_network_info.py new file mode 100644 index 0000000000..139b537147 --- /dev/null +++ b/intersight/model/kubernetes_baremetal_network_info.py @@ -0,0 +1,252 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.kubernetes_baremetal_network_info_all_of import KubernetesBaremetalNetworkInfoAllOf + from intersight.model.kubernetes_ethernet import KubernetesEthernet + from intersight.model.kubernetes_ovs_bond import KubernetesOvsBond + from intersight.model.mo_base_complex_type import MoBaseComplexType + globals()['KubernetesBaremetalNetworkInfoAllOf'] = KubernetesBaremetalNetworkInfoAllOf + globals()['KubernetesEthernet'] = KubernetesEthernet + globals()['KubernetesOvsBond'] = KubernetesOvsBond + globals()['MoBaseComplexType'] = MoBaseComplexType + + +class KubernetesBaremetalNetworkInfo(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',): { + 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + }, + ('object_type',): { + 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + }, + } + + 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 + 'ethernets': ([KubernetesEthernet], none_type,), # noqa: E501 + 'ovsbonds': ([KubernetesOvsBond], none_type,), # 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 + 'ethernets': 'Ethernets', # noqa: E501 + 'ovsbonds': 'Ovsbonds', # 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 + """KubernetesBaremetalNetworkInfo - 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 "kubernetes.BaremetalNetworkInfo", must be one of ["kubernetes.BaremetalNetworkInfo", ] # 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 "kubernetes.BaremetalNetworkInfo", must be one of ["kubernetes.BaremetalNetworkInfo", ] # 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,) + ethernets ([KubernetesEthernet], none_type): [optional] # noqa: E501 + ovsbonds ([KubernetesOvsBond], none_type): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.BaremetalNetworkInfo") + object_type = kwargs.get('object_type', "kubernetes.BaremetalNetworkInfo") + _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': [ + KubernetesBaremetalNetworkInfoAllOf, + MoBaseComplexType, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/kubernetes_baremetal_network_info_all_of.py b/intersight/model/kubernetes_baremetal_network_info_all_of.py new file mode 100644 index 0000000000..e95bc82a50 --- /dev/null +++ b/intersight/model/kubernetes_baremetal_network_info_all_of.py @@ -0,0 +1,195 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.kubernetes_ethernet import KubernetesEthernet + from intersight.model.kubernetes_ovs_bond import KubernetesOvsBond + globals()['KubernetesEthernet'] = KubernetesEthernet + globals()['KubernetesOvsBond'] = KubernetesOvsBond + + +class KubernetesBaremetalNetworkInfoAllOf(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',): { + 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + }, + ('object_type',): { + 'KUBERNETES.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + }, + } + + 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 + 'ethernets': ([KubernetesEthernet], none_type,), # noqa: E501 + 'ovsbonds': ([KubernetesOvsBond], none_type,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'ethernets': 'Ethernets', # noqa: E501 + 'ovsbonds': 'Ovsbonds', # 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 + """KubernetesBaremetalNetworkInfoAllOf - 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 "kubernetes.BaremetalNetworkInfo", must be one of ["kubernetes.BaremetalNetworkInfo", ] # 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 "kubernetes.BaremetalNetworkInfo", must be one of ["kubernetes.BaremetalNetworkInfo", ] # 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,) + ethernets ([KubernetesEthernet], none_type): [optional] # noqa: E501 + ovsbonds ([KubernetesOvsBond], none_type): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.BaremetalNetworkInfo") + object_type = kwargs.get('object_type', "kubernetes.BaremetalNetworkInfo") + _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/kubernetes_baremetal_node_profile.py b/intersight/model/kubernetes_baremetal_node_profile.py new file mode 100644 index 0000000000..859f0e052c --- /dev/null +++ b/intersight/model/kubernetes_baremetal_node_profile.py @@ -0,0 +1,370 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.compute_rack_unit_relationship import ComputeRackUnitRelationship + from intersight.model.display_names import DisplayNames + from intersight.model.kubernetes_baremetal_network_info import KubernetesBaremetalNetworkInfo + from intersight.model.kubernetes_baremetal_node_profile_all_of import KubernetesBaremetalNodeProfileAllOf + from intersight.model.kubernetes_config_result_relationship import KubernetesConfigResultRelationship + from intersight.model.kubernetes_node_group_profile_relationship import KubernetesNodeGroupProfileRelationship + from intersight.model.kubernetes_node_profile import KubernetesNodeProfile + from intersight.model.kubernetes_version_relationship import KubernetesVersionRelationship + 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_relationship import PolicyAbstractPolicyRelationship + from intersight.model.policy_abstract_profile_relationship import PolicyAbstractProfileRelationship + from intersight.model.policy_config_context import PolicyConfigContext + globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship + globals()['ComputeRackUnitRelationship'] = ComputeRackUnitRelationship + globals()['DisplayNames'] = DisplayNames + globals()['KubernetesBaremetalNetworkInfo'] = KubernetesBaremetalNetworkInfo + globals()['KubernetesBaremetalNodeProfileAllOf'] = KubernetesBaremetalNodeProfileAllOf + globals()['KubernetesConfigResultRelationship'] = KubernetesConfigResultRelationship + globals()['KubernetesNodeGroupProfileRelationship'] = KubernetesNodeGroupProfileRelationship + globals()['KubernetesNodeProfile'] = KubernetesNodeProfile + globals()['KubernetesVersionRelationship'] = KubernetesVersionRelationship + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['PolicyAbstractPolicyRelationship'] = PolicyAbstractPolicyRelationship + globals()['PolicyAbstractProfileRelationship'] = PolicyAbstractProfileRelationship + globals()['PolicyConfigContext'] = PolicyConfigContext + + +class KubernetesBaremetalNodeProfile(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',): { + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", + }, + ('object_type',): { + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", + }, + ('type',): { + 'INSTANCE': "instance", + }, + ('cloud_provider',): { + 'NOPROVIDER': "noProvider", + 'EXTERNAL': "external", + }, + } + + validations = { + ('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 + 'kubernetes_nic': (str,), # noqa: E501 + 'network_info': (KubernetesBaremetalNetworkInfo,), # noqa: E501 + 'server': (ComputeRackUnitRelationship,), # 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 + 'type': (str,), # noqa: E501 + 'src_template': (PolicyAbstractProfileRelationship,), # noqa: E501 + 'action': (str,), # noqa: E501 + 'config_context': (PolicyConfigContext,), # noqa: E501 + 'policy_bucket': ([PolicyAbstractPolicyRelationship], none_type,), # noqa: E501 + 'cloud_provider': (str,), # noqa: E501 + 'config_result': (KubernetesConfigResultRelationship,), # noqa: E501 + 'node_group': (KubernetesNodeGroupProfileRelationship,), # noqa: E501 + 'target': (AssetDeviceRegistrationRelationship,), # noqa: E501 + 'version': (KubernetesVersionRelationship,), # 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 + 'kubernetes_nic': 'KubernetesNic', # noqa: E501 + 'network_info': 'NetworkInfo', # noqa: E501 + 'server': 'Server', # 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 + 'type': 'Type', # noqa: E501 + 'src_template': 'SrcTemplate', # noqa: E501 + 'action': 'Action', # noqa: E501 + 'config_context': 'ConfigContext', # noqa: E501 + 'policy_bucket': 'PolicyBucket', # noqa: E501 + 'cloud_provider': 'CloudProvider', # noqa: E501 + 'config_result': 'ConfigResult', # noqa: E501 + 'node_group': 'NodeGroup', # noqa: E501 + 'target': 'Target', # noqa: E501 + 'version': 'Version', # 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 + """KubernetesBaremetalNodeProfile - 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 "kubernetes.BaremetalNodeProfile", must be one of ["kubernetes.BaremetalNodeProfile", ] # 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 "kubernetes.BaremetalNodeProfile", must be one of ["kubernetes.BaremetalNodeProfile", ] # 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,) + kubernetes_nic (str): Network interface from NetworkInfo (by name) to use for kubernetes VIP.. [optional] # noqa: E501 + network_info (KubernetesBaremetalNetworkInfo): [optional] # noqa: E501 + server (ComputeRackUnitRelationship): [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 profile.. [optional] # noqa: E501 + name (str): Name of the profile instance or profile template.. [optional] # noqa: E501 + type (str): Defines the type of the profile. Accepted values are instance or template. * `instance` - The profile defines the configuration for a specific instance of a target.. [optional] if omitted the server will use the default value of "instance" # noqa: E501 + src_template (PolicyAbstractProfileRelationship): [optional] # noqa: E501 + action (str): User initiated action. Each profile type has its own supported actions. For HyperFlex cluster profile, the supported actions are -- Validate, Deploy, Continue, Retry, Abort, Unassign For server profile, the support actions are -- Deploy, Unassign.. [optional] if omitted the server will use the default value of "No-op" # noqa: E501 + config_context (PolicyConfigContext): [optional] # noqa: E501 + policy_bucket ([PolicyAbstractPolicyRelationship], none_type): An array of relationships to policyAbstractPolicy resources.. [optional] # noqa: E501 + cloud_provider (str): Cloud provider for this node profile. * `noProvider` - Enables the use of no cloud provider. * `external` - Out of tree cloud provider, e.g. CPI for vsphere.. [optional] if omitted the server will use the default value of "noProvider" # noqa: E501 + config_result (KubernetesConfigResultRelationship): [optional] # noqa: E501 + node_group (KubernetesNodeGroupProfileRelationship): [optional] # noqa: E501 + target (AssetDeviceRegistrationRelationship): [optional] # noqa: E501 + version (KubernetesVersionRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.BaremetalNodeProfile") + object_type = kwargs.get('object_type', "kubernetes.BaremetalNodeProfile") + _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': [ + KubernetesBaremetalNodeProfileAllOf, + KubernetesNodeProfile, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/kubernetes_baremetal_node_profile_all_of.py b/intersight/model/kubernetes_baremetal_node_profile_all_of.py new file mode 100644 index 0000000000..121bab08d6 --- /dev/null +++ b/intersight/model/kubernetes_baremetal_node_profile_all_of.py @@ -0,0 +1,198 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.compute_rack_unit_relationship import ComputeRackUnitRelationship + from intersight.model.kubernetes_baremetal_network_info import KubernetesBaremetalNetworkInfo + globals()['ComputeRackUnitRelationship'] = ComputeRackUnitRelationship + globals()['KubernetesBaremetalNetworkInfo'] = KubernetesBaremetalNetworkInfo + + +class KubernetesBaremetalNodeProfileAllOf(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',): { + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", + }, + ('object_type',): { + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", + }, + } + + 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 + 'kubernetes_nic': (str,), # noqa: E501 + 'network_info': (KubernetesBaremetalNetworkInfo,), # noqa: E501 + 'server': (ComputeRackUnitRelationship,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'kubernetes_nic': 'KubernetesNic', # noqa: E501 + 'network_info': 'NetworkInfo', # noqa: E501 + 'server': 'Server', # 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 + """KubernetesBaremetalNodeProfileAllOf - 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 "kubernetes.BaremetalNodeProfile", must be one of ["kubernetes.BaremetalNodeProfile", ] # 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 "kubernetes.BaremetalNodeProfile", must be one of ["kubernetes.BaremetalNodeProfile", ] # 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,) + kubernetes_nic (str): Network interface from NetworkInfo (by name) to use for kubernetes VIP.. [optional] # noqa: E501 + network_info (KubernetesBaremetalNetworkInfo): [optional] # noqa: E501 + server (ComputeRackUnitRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.BaremetalNodeProfile") + object_type = kwargs.get('object_type', "kubernetes.BaremetalNodeProfile") + _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/kubernetes_baremetal_node_profile_list.py b/intersight/model/kubernetes_baremetal_node_profile_list.py new file mode 100644 index 0000000000..96196f216f --- /dev/null +++ b/intersight/model/kubernetes_baremetal_node_profile_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.kubernetes_baremetal_node_profile import KubernetesBaremetalNodeProfile + from intersight.model.kubernetes_baremetal_node_profile_list_all_of import KubernetesBaremetalNodeProfileListAllOf + from intersight.model.mo_base_response import MoBaseResponse + globals()['KubernetesBaremetalNodeProfile'] = KubernetesBaremetalNodeProfile + globals()['KubernetesBaremetalNodeProfileListAllOf'] = KubernetesBaremetalNodeProfileListAllOf + globals()['MoBaseResponse'] = MoBaseResponse + + +class KubernetesBaremetalNodeProfileList(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': ([KubernetesBaremetalNodeProfile], 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 + """KubernetesBaremetalNodeProfileList - 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 'kubernetes.BaremetalNodeProfile' 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 ([KubernetesBaremetalNodeProfile], none_type): The array of 'kubernetes.BaremetalNodeProfile' 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': [ + KubernetesBaremetalNodeProfileListAllOf, + MoBaseResponse, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/kubernetes_baremetal_node_profile_list_all_of.py b/intersight/model/kubernetes_baremetal_node_profile_list_all_of.py new file mode 100644 index 0000000000..73b5f39112 --- /dev/null +++ b/intersight/model/kubernetes_baremetal_node_profile_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.kubernetes_baremetal_node_profile import KubernetesBaremetalNodeProfile + globals()['KubernetesBaremetalNodeProfile'] = KubernetesBaremetalNodeProfile + + +class KubernetesBaremetalNodeProfileListAllOf(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': ([KubernetesBaremetalNodeProfile], 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 + """KubernetesBaremetalNodeProfileListAllOf - 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 'kubernetes.BaremetalNodeProfile' 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 ([KubernetesBaremetalNodeProfile], none_type): The array of 'kubernetes.BaremetalNodeProfile' 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/kubernetes_baremetal_node_profile_response.py b/intersight/model/kubernetes_baremetal_node_profile_response.py new file mode 100644 index 0000000000..51ad2f0092 --- /dev/null +++ b/intersight/model/kubernetes_baremetal_node_profile_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.kubernetes_baremetal_node_profile_list import KubernetesBaremetalNodeProfileList + 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()['KubernetesBaremetalNodeProfileList'] = KubernetesBaremetalNodeProfileList + globals()['MoAggregateTransform'] = MoAggregateTransform + globals()['MoDocumentCount'] = MoDocumentCount + globals()['MoTagKeySummary'] = MoTagKeySummary + globals()['MoTagSummary'] = MoTagSummary + + +class KubernetesBaremetalNodeProfileResponse(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 = { + 'kubernetes.BaremetalNodeProfile.List': KubernetesBaremetalNodeProfileList, + '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 + """KubernetesBaremetalNodeProfileResponse - 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 'kubernetes.BaremetalNodeProfile' 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': [ + KubernetesBaremetalNodeProfileList, + MoAggregateTransform, + MoDocumentCount, + MoTagSummary, + ], + } diff --git a/intersight/model/kubernetes_base_infrastructure_provider.py b/intersight/model/kubernetes_base_infrastructure_provider.py index 0855c5d0bc..e9066769be 100644 --- a/intersight/model/kubernetes_base_infrastructure_provider.py +++ b/intersight/model/kubernetes_base_infrastructure_provider.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_base_infrastructure_provider_all_of.py b/intersight/model/kubernetes_base_infrastructure_provider_all_of.py index 1186cf6992..606f1393a0 100644 --- a/intersight/model/kubernetes_base_infrastructure_provider_all_of.py +++ b/intersight/model/kubernetes_base_infrastructure_provider_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_base_infrastructure_provider_relationship.py b/intersight/model/kubernetes_base_infrastructure_provider_relationship.py index cfff6a2da2..d6e0c635c3 100644 --- a/intersight/model/kubernetes_base_infrastructure_provider_relationship.py +++ b/intersight/model/kubernetes_base_infrastructure_provider_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 KubernetesBaseInfrastructureProviderRelationship(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 KubernetesBaseInfrastructureProviderRelationship(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 KubernetesBaseInfrastructureProviderRelationship(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 KubernetesBaseInfrastructureProviderRelationship(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 KubernetesBaseInfrastructureProviderRelationship(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 KubernetesBaseInfrastructureProviderRelationship(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 KubernetesBaseInfrastructureProviderRelationship(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 KubernetesBaseInfrastructureProviderRelationship(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 KubernetesBaseInfrastructureProviderRelationship(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 KubernetesBaseInfrastructureProviderRelationship(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/kubernetes_base_virtual_machine_infra_config.py b/intersight/model/kubernetes_base_virtual_machine_infra_config.py index 8f25e543cb..208b575e52 100644 --- a/intersight/model/kubernetes_base_virtual_machine_infra_config.py +++ b/intersight/model/kubernetes_base_virtual_machine_infra_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/kubernetes_base_virtual_machine_infra_config_all_of.py b/intersight/model/kubernetes_base_virtual_machine_infra_config_all_of.py index fcbb42b6f1..e68fd4f225 100644 --- a/intersight/model/kubernetes_base_virtual_machine_infra_config_all_of.py +++ b/intersight/model/kubernetes_base_virtual_machine_infra_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/kubernetes_calico_config.py b/intersight/model/kubernetes_calico_config.py index cae64dbed3..9f24e41ed9 100644 --- a/intersight/model/kubernetes_calico_config.py +++ b/intersight/model/kubernetes_calico_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/kubernetes_calico_config_all_of.py b/intersight/model/kubernetes_calico_config_all_of.py index d612c0c60e..cd211a514a 100644 --- a/intersight/model/kubernetes_calico_config_all_of.py +++ b/intersight/model/kubernetes_calico_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/kubernetes_catalog.py b/intersight/model/kubernetes_catalog.py index 221dc98370..50176bce7f 100644 --- a/intersight/model/kubernetes_catalog.py +++ b/intersight/model/kubernetes_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/kubernetes_catalog_all_of.py b/intersight/model/kubernetes_catalog_all_of.py index 259400e4a6..95b82167cc 100644 --- a/intersight/model/kubernetes_catalog_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_catalog_list.py b/intersight/model/kubernetes_catalog_list.py index 2db52c4842..bb5aee3395 100644 --- a/intersight/model/kubernetes_catalog_list.py +++ b/intersight/model/kubernetes_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/kubernetes_catalog_list_all_of.py b/intersight/model/kubernetes_catalog_list_all_of.py index 26defe68cd..a77f14ed9a 100644 --- a/intersight/model/kubernetes_catalog_list_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_catalog_relationship.py b/intersight/model/kubernetes_catalog_relationship.py index eb1eb98f4d..31c7bea747 100644 --- a/intersight/model/kubernetes_catalog_relationship.py +++ b/intersight/model/kubernetes_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 """ @@ -76,6 +76,8 @@ class KubernetesCatalogRelationship(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 KubernetesCatalogRelationship(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 KubernetesCatalogRelationship(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 KubernetesCatalogRelationship(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 KubernetesCatalogRelationship(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 KubernetesCatalogRelationship(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 KubernetesCatalogRelationship(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 KubernetesCatalogRelationship(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 KubernetesCatalogRelationship(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 KubernetesCatalogRelationship(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/kubernetes_catalog_response.py b/intersight/model/kubernetes_catalog_response.py index 30aa277c44..666fead8ca 100644 --- a/intersight/model/kubernetes_catalog_response.py +++ b/intersight/model/kubernetes_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/kubernetes_cluster.py b/intersight/model/kubernetes_cluster.py index 83ef31bc20..6ac7e61125 100644 --- a/intersight/model/kubernetes_cluster.py +++ b/intersight/model/kubernetes_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/kubernetes_cluster_addon_profile.py b/intersight/model/kubernetes_cluster_addon_profile.py index e17b721357..a7ce85a279 100644 --- a/intersight/model/kubernetes_cluster_addon_profile.py +++ b/intersight/model/kubernetes_cluster_addon_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/kubernetes_cluster_addon_profile_all_of.py b/intersight/model/kubernetes_cluster_addon_profile_all_of.py index d6c23ddeab..56fbd3a148 100644 --- a/intersight/model/kubernetes_cluster_addon_profile_all_of.py +++ b/intersight/model/kubernetes_cluster_addon_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/kubernetes_cluster_addon_profile_list.py b/intersight/model/kubernetes_cluster_addon_profile_list.py index 10ea50013e..9709ffa4d2 100644 --- a/intersight/model/kubernetes_cluster_addon_profile_list.py +++ b/intersight/model/kubernetes_cluster_addon_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/kubernetes_cluster_addon_profile_list_all_of.py b/intersight/model/kubernetes_cluster_addon_profile_list_all_of.py index 584faf1dc7..38f6e52c2d 100644 --- a/intersight/model/kubernetes_cluster_addon_profile_list_all_of.py +++ b/intersight/model/kubernetes_cluster_addon_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/kubernetes_cluster_addon_profile_relationship.py b/intersight/model/kubernetes_cluster_addon_profile_relationship.py index 0f8d6eeb34..89245f3ebe 100644 --- a/intersight/model/kubernetes_cluster_addon_profile_relationship.py +++ b/intersight/model/kubernetes_cluster_addon_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 """ @@ -78,6 +78,8 @@ class KubernetesClusterAddonProfileRelationship(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 KubernetesClusterAddonProfileRelationship(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 KubernetesClusterAddonProfileRelationship(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 KubernetesClusterAddonProfileRelationship(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 KubernetesClusterAddonProfileRelationship(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 KubernetesClusterAddonProfileRelationship(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 KubernetesClusterAddonProfileRelationship(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 KubernetesClusterAddonProfileRelationship(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 KubernetesClusterAddonProfileRelationship(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 KubernetesClusterAddonProfileRelationship(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/kubernetes_cluster_addon_profile_response.py b/intersight/model/kubernetes_cluster_addon_profile_response.py index 5119e1044e..f8a5ea995a 100644 --- a/intersight/model/kubernetes_cluster_addon_profile_response.py +++ b/intersight/model/kubernetes_cluster_addon_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/kubernetes_cluster_all_of.py b/intersight/model/kubernetes_cluster_all_of.py index 5c28e306ac..795ef8ad63 100644 --- a/intersight/model/kubernetes_cluster_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_cluster_certificate_configuration.py b/intersight/model/kubernetes_cluster_certificate_configuration.py index f5c567a6d4..d2057a2b37 100644 --- a/intersight/model/kubernetes_cluster_certificate_configuration.py +++ b/intersight/model/kubernetes_cluster_certificate_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/kubernetes_cluster_certificate_configuration_all_of.py b/intersight/model/kubernetes_cluster_certificate_configuration_all_of.py index 7746034d05..cb4eb6334e 100644 --- a/intersight/model/kubernetes_cluster_certificate_configuration_all_of.py +++ b/intersight/model/kubernetes_cluster_certificate_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/kubernetes_cluster_list.py b/intersight/model/kubernetes_cluster_list.py index 4e0f8f2399..8bda7597ee 100644 --- a/intersight/model/kubernetes_cluster_list.py +++ b/intersight/model/kubernetes_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/kubernetes_cluster_list_all_of.py b/intersight/model/kubernetes_cluster_list_all_of.py index a2b0ef70da..f069b3e8d9 100644 --- a/intersight/model/kubernetes_cluster_list_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_cluster_management_config.py b/intersight/model/kubernetes_cluster_management_config.py index d63b242ed9..4d7376a857 100644 --- a/intersight/model/kubernetes_cluster_management_config.py +++ b/intersight/model/kubernetes_cluster_management_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 """ @@ -95,11 +95,13 @@ def openapi_types(): return { 'class_id': (str,), # noqa: E501 'object_type': (str,), # noqa: E501 + 'is_tac_passwd_set': (bool,), # noqa: E501 'load_balancer_count': (int,), # noqa: E501 'load_balancers': ([str], none_type,), # noqa: E501 'master_vip': (str,), # noqa: E501 'ssh_keys': ([str], none_type,), # noqa: E501 'ssh_user': (str,), # noqa: E501 + 'tac_passwd': (str,), # noqa: E501 } @cached_property @@ -113,11 +115,13 @@ def discriminator(): attribute_map = { 'class_id': 'ClassId', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 + 'is_tac_passwd_set': 'IsTacPasswdSet', # noqa: E501 'load_balancer_count': 'LoadBalancerCount', # noqa: E501 'load_balancers': 'LoadBalancers', # noqa: E501 'master_vip': 'MasterVip', # noqa: E501 'ssh_keys': 'SshKeys', # noqa: E501 'ssh_user': 'SshUser', # noqa: E501 + 'tac_passwd': 'TacPasswd', # noqa: E501 } required_properties = set([ @@ -171,11 +175,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,) + is_tac_passwd_set (bool): Indicates whether the value of the 'tacPasswd' property has been set.. [optional] if omitted the server will use the default value of False # noqa: E501 load_balancer_count (int): Number of IP addresses to reserve for load balancer services.. [optional] # noqa: E501 load_balancers ([str], none_type): [optional] # noqa: E501 master_vip (str): VIP for the cluster Kubernetes API server. If this is empty and a cluster IP pool is specified, it will be allocated from the IP pool.. [optional] # noqa: E501 ssh_keys ([str], none_type): [optional] # noqa: E501 ssh_user (str): Name of the user to SSH to nodes in a cluster.. [optional] if omitted the server will use the default value of "iksadmin" # noqa: E501 + tac_passwd (str): Hashed password of the TAC user.. [optional] # noqa: E501 """ class_id = kwargs.get('class_id', "kubernetes.ClusterManagementConfig") diff --git a/intersight/model/kubernetes_cluster_management_config_all_of.py b/intersight/model/kubernetes_cluster_management_config_all_of.py index 6beffbdeb2..8e17bf6d12 100644 --- a/intersight/model/kubernetes_cluster_management_config_all_of.py +++ b/intersight/model/kubernetes_cluster_management_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 """ @@ -81,11 +81,13 @@ def openapi_types(): return { 'class_id': (str,), # noqa: E501 'object_type': (str,), # noqa: E501 + 'is_tac_passwd_set': (bool,), # noqa: E501 'load_balancer_count': (int,), # noqa: E501 'load_balancers': ([str], none_type,), # noqa: E501 'master_vip': (str,), # noqa: E501 'ssh_keys': ([str], none_type,), # noqa: E501 'ssh_user': (str,), # noqa: E501 + 'tac_passwd': (str,), # noqa: E501 } @cached_property @@ -96,11 +98,13 @@ def discriminator(): attribute_map = { 'class_id': 'ClassId', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 + 'is_tac_passwd_set': 'IsTacPasswdSet', # noqa: E501 'load_balancer_count': 'LoadBalancerCount', # noqa: E501 'load_balancers': 'LoadBalancers', # noqa: E501 'master_vip': 'MasterVip', # noqa: E501 'ssh_keys': 'SshKeys', # noqa: E501 'ssh_user': 'SshUser', # noqa: E501 + 'tac_passwd': 'TacPasswd', # noqa: E501 } _composed_schemas = {} @@ -153,11 +157,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,) + is_tac_passwd_set (bool): Indicates whether the value of the 'tacPasswd' property has been set.. [optional] if omitted the server will use the default value of False # noqa: E501 load_balancer_count (int): Number of IP addresses to reserve for load balancer services.. [optional] # noqa: E501 load_balancers ([str], none_type): [optional] # noqa: E501 master_vip (str): VIP for the cluster Kubernetes API server. If this is empty and a cluster IP pool is specified, it will be allocated from the IP pool.. [optional] # noqa: E501 ssh_keys ([str], none_type): [optional] # noqa: E501 ssh_user (str): Name of the user to SSH to nodes in a cluster.. [optional] if omitted the server will use the default value of "iksadmin" # noqa: E501 + tac_passwd (str): Hashed password of the TAC user.. [optional] # noqa: E501 """ class_id = kwargs.get('class_id', "kubernetes.ClusterManagementConfig") diff --git a/intersight/model/kubernetes_cluster_profile.py b/intersight/model/kubernetes_cluster_profile.py index 16cb219779..8d59ba1d5b 100644 --- a/intersight/model/kubernetes_cluster_profile.py +++ b/intersight/model/kubernetes_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 """ @@ -193,6 +193,7 @@ def openapi_types(): 'net_config': (KubernetesNetworkPolicyRelationship,), # noqa: E501 'node_groups': ([KubernetesNodeGroupProfileRelationship], none_type,), # noqa: E501 'organization': (OrganizationOrganizationRelationship,), # noqa: E501 + 'parent_solution_profile': (MoBaseMoRelationship,), # noqa: E501 'sys_config': (KubernetesSysConfigPolicyRelationship,), # noqa: E501 'trusted_registries': (KubernetesTrustedRegistriesPolicyRelationship,), # noqa: E501 'workflow_info': (WorkflowWorkflowInfoRelationship,), # noqa: E501 @@ -245,6 +246,7 @@ def discriminator(): 'net_config': 'NetConfig', # noqa: E501 'node_groups': 'NodeGroups', # noqa: E501 'organization': 'Organization', # noqa: E501 + 'parent_solution_profile': 'ParentSolutionProfile', # noqa: E501 'sys_config': 'SysConfig', # noqa: E501 'trusted_registries': 'TrustedRegistries', # noqa: E501 'workflow_info': 'WorkflowInfo', # noqa: E501 @@ -337,6 +339,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 net_config (KubernetesNetworkPolicyRelationship): [optional] # noqa: E501 node_groups ([KubernetesNodeGroupProfileRelationship], none_type): An array of relationships to kubernetesNodeGroupProfile resources.. [optional] # noqa: E501 organization (OrganizationOrganizationRelationship): [optional] # noqa: E501 + parent_solution_profile (MoBaseMoRelationship): [optional] # noqa: E501 sys_config (KubernetesSysConfigPolicyRelationship): [optional] # noqa: E501 trusted_registries (KubernetesTrustedRegistriesPolicyRelationship): [optional] # noqa: E501 workflow_info (WorkflowWorkflowInfoRelationship): [optional] # noqa: E501 diff --git a/intersight/model/kubernetes_cluster_profile_all_of.py b/intersight/model/kubernetes_cluster_profile_all_of.py index 337f590f8c..1462d78d32 100644 --- a/intersight/model/kubernetes_cluster_profile_all_of.py +++ b/intersight/model/kubernetes_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 """ @@ -42,6 +42,7 @@ def lazy_import(): from intersight.model.kubernetes_node_group_profile_relationship import KubernetesNodeGroupProfileRelationship from intersight.model.kubernetes_sys_config_policy_relationship import KubernetesSysConfigPolicyRelationship from intersight.model.kubernetes_trusted_registries_policy_relationship import KubernetesTrustedRegistriesPolicyRelationship + from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship from intersight.model.workflow_workflow_info_relationship import WorkflowWorkflowInfoRelationship globals()['IppoolIpLeaseRelationship'] = IppoolIpLeaseRelationship @@ -58,6 +59,7 @@ def lazy_import(): globals()['KubernetesNodeGroupProfileRelationship'] = KubernetesNodeGroupProfileRelationship globals()['KubernetesSysConfigPolicyRelationship'] = KubernetesSysConfigPolicyRelationship globals()['KubernetesTrustedRegistriesPolicyRelationship'] = KubernetesTrustedRegistriesPolicyRelationship + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship globals()['WorkflowWorkflowInfoRelationship'] = WorkflowWorkflowInfoRelationship @@ -154,6 +156,7 @@ def openapi_types(): 'net_config': (KubernetesNetworkPolicyRelationship,), # noqa: E501 'node_groups': ([KubernetesNodeGroupProfileRelationship], none_type,), # noqa: E501 'organization': (OrganizationOrganizationRelationship,), # noqa: E501 + 'parent_solution_profile': (MoBaseMoRelationship,), # noqa: E501 'sys_config': (KubernetesSysConfigPolicyRelationship,), # noqa: E501 'trusted_registries': (KubernetesTrustedRegistriesPolicyRelationship,), # noqa: E501 'workflow_info': (WorkflowWorkflowInfoRelationship,), # noqa: E501 @@ -183,6 +186,7 @@ def discriminator(): 'net_config': 'NetConfig', # noqa: E501 'node_groups': 'NodeGroups', # noqa: E501 'organization': 'Organization', # noqa: E501 + 'parent_solution_profile': 'ParentSolutionProfile', # noqa: E501 'sys_config': 'SysConfig', # noqa: E501 'trusted_registries': 'TrustedRegistries', # noqa: E501 'workflow_info': 'WorkflowInfo', # noqa: E501 @@ -254,6 +258,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 net_config (KubernetesNetworkPolicyRelationship): [optional] # noqa: E501 node_groups ([KubernetesNodeGroupProfileRelationship], none_type): An array of relationships to kubernetesNodeGroupProfile resources.. [optional] # noqa: E501 organization (OrganizationOrganizationRelationship): [optional] # noqa: E501 + parent_solution_profile (MoBaseMoRelationship): [optional] # noqa: E501 sys_config (KubernetesSysConfigPolicyRelationship): [optional] # noqa: E501 trusted_registries (KubernetesTrustedRegistriesPolicyRelationship): [optional] # noqa: E501 workflow_info (WorkflowWorkflowInfoRelationship): [optional] # noqa: E501 diff --git a/intersight/model/kubernetes_cluster_profile_list.py b/intersight/model/kubernetes_cluster_profile_list.py index 47368f34a0..9127408099 100644 --- a/intersight/model/kubernetes_cluster_profile_list.py +++ b/intersight/model/kubernetes_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/kubernetes_cluster_profile_list_all_of.py b/intersight/model/kubernetes_cluster_profile_list_all_of.py index 83383d182f..cf03d57ca0 100644 --- a/intersight/model/kubernetes_cluster_profile_list_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_cluster_profile_relationship.py b/intersight/model/kubernetes_cluster_profile_relationship.py index 9bca2e041c..98f6bc9c22 100644 --- a/intersight/model/kubernetes_cluster_profile_relationship.py +++ b/intersight/model/kubernetes_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 """ @@ -135,6 +135,8 @@ class KubernetesClusterProfileRelationship(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", @@ -151,6 +153,7 @@ class KubernetesClusterProfileRelationship(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", @@ -199,9 +202,12 @@ class KubernetesClusterProfileRelationship(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", @@ -265,10 +271,6 @@ class KubernetesClusterProfileRelationship(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", @@ -277,6 +279,7 @@ class KubernetesClusterProfileRelationship(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", @@ -525,6 +528,7 @@ class KubernetesClusterProfileRelationship(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", @@ -694,6 +698,11 @@ class KubernetesClusterProfileRelationship(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", @@ -809,6 +818,7 @@ class KubernetesClusterProfileRelationship(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", @@ -840,6 +850,7 @@ class KubernetesClusterProfileRelationship(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", @@ -872,12 +883,14 @@ class KubernetesClusterProfileRelationship(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", }, } @@ -957,6 +970,7 @@ def openapi_types(): 'net_config': (KubernetesNetworkPolicyRelationship,), # noqa: E501 'node_groups': ([KubernetesNodeGroupProfileRelationship], none_type,), # noqa: E501 'organization': (OrganizationOrganizationRelationship,), # noqa: E501 + 'parent_solution_profile': (MoBaseMoRelationship,), # noqa: E501 'sys_config': (KubernetesSysConfigPolicyRelationship,), # noqa: E501 'trusted_registries': (KubernetesTrustedRegistriesPolicyRelationship,), # noqa: E501 'workflow_info': (WorkflowWorkflowInfoRelationship,), # noqa: E501 @@ -1014,6 +1028,7 @@ def discriminator(): 'net_config': 'NetConfig', # noqa: E501 'node_groups': 'NodeGroups', # noqa: E501 'organization': 'Organization', # noqa: E501 + 'parent_solution_profile': 'ParentSolutionProfile', # noqa: E501 'sys_config': 'SysConfig', # noqa: E501 'trusted_registries': 'TrustedRegistries', # noqa: E501 'workflow_info': 'WorkflowInfo', # noqa: E501 @@ -1108,6 +1123,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 net_config (KubernetesNetworkPolicyRelationship): [optional] # noqa: E501 node_groups ([KubernetesNodeGroupProfileRelationship], none_type): An array of relationships to kubernetesNodeGroupProfile resources.. [optional] # noqa: E501 organization (OrganizationOrganizationRelationship): [optional] # noqa: E501 + parent_solution_profile (MoBaseMoRelationship): [optional] # noqa: E501 sys_config (KubernetesSysConfigPolicyRelationship): [optional] # noqa: E501 trusted_registries (KubernetesTrustedRegistriesPolicyRelationship): [optional] # noqa: E501 workflow_info (WorkflowWorkflowInfoRelationship): [optional] # noqa: E501 diff --git a/intersight/model/kubernetes_cluster_profile_response.py b/intersight/model/kubernetes_cluster_profile_response.py index a1237d0061..65e6f3f44a 100644 --- a/intersight/model/kubernetes_cluster_profile_response.py +++ b/intersight/model/kubernetes_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/kubernetes_cluster_relationship.py b/intersight/model/kubernetes_cluster_relationship.py index 2040bc202a..d50d22cf05 100644 --- a/intersight/model/kubernetes_cluster_relationship.py +++ b/intersight/model/kubernetes_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 """ @@ -86,6 +86,8 @@ class KubernetesClusterRelationship(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 KubernetesClusterRelationship(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 KubernetesClusterRelationship(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 KubernetesClusterRelationship(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 KubernetesClusterRelationship(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 KubernetesClusterRelationship(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 KubernetesClusterRelationship(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 KubernetesClusterRelationship(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 KubernetesClusterRelationship(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 KubernetesClusterRelationship(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/kubernetes_cluster_response.py b/intersight/model/kubernetes_cluster_response.py index f265b3c331..da73007ac8 100644 --- a/intersight/model/kubernetes_cluster_response.py +++ b/intersight/model/kubernetes_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/kubernetes_cni_config.py b/intersight/model/kubernetes_cni_config.py index ac83093eca..0ecc66f01d 100644 --- a/intersight/model/kubernetes_cni_config.py +++ b/intersight/model/kubernetes_cni_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/kubernetes_cni_config_all_of.py b/intersight/model/kubernetes_cni_config_all_of.py index 82aa115e9b..f69e9efab3 100644 --- a/intersight/model/kubernetes_cni_config_all_of.py +++ b/intersight/model/kubernetes_cni_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/kubernetes_config_result.py b/intersight/model/kubernetes_config_result.py index d91e503b7b..2ecc4a8544 100644 --- a/intersight/model/kubernetes_config_result.py +++ b/intersight/model/kubernetes_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/kubernetes_config_result_all_of.py b/intersight/model/kubernetes_config_result_all_of.py index 3a13f4ea03..409c1f0be0 100644 --- a/intersight/model/kubernetes_config_result_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_config_result_entry.py b/intersight/model/kubernetes_config_result_entry.py index 5a6f249779..8cb75816df 100644 --- a/intersight/model/kubernetes_config_result_entry.py +++ b/intersight/model/kubernetes_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/kubernetes_config_result_entry_all_of.py b/intersight/model/kubernetes_config_result_entry_all_of.py index 71f65f6355..2e40f651a6 100644 --- a/intersight/model/kubernetes_config_result_entry_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_config_result_entry_list.py b/intersight/model/kubernetes_config_result_entry_list.py index 45fa1a2e0f..0006b6c044 100644 --- a/intersight/model/kubernetes_config_result_entry_list.py +++ b/intersight/model/kubernetes_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/kubernetes_config_result_entry_list_all_of.py b/intersight/model/kubernetes_config_result_entry_list_all_of.py index 8df8d4f488..c250ff1bfd 100644 --- a/intersight/model/kubernetes_config_result_entry_list_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_config_result_entry_relationship.py b/intersight/model/kubernetes_config_result_entry_relationship.py index eec8654999..4d7747c721 100644 --- a/intersight/model/kubernetes_config_result_entry_relationship.py +++ b/intersight/model/kubernetes_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 KubernetesConfigResultEntryRelationship(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 KubernetesConfigResultEntryRelationship(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 KubernetesConfigResultEntryRelationship(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 KubernetesConfigResultEntryRelationship(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 KubernetesConfigResultEntryRelationship(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 KubernetesConfigResultEntryRelationship(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 KubernetesConfigResultEntryRelationship(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 KubernetesConfigResultEntryRelationship(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 KubernetesConfigResultEntryRelationship(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 KubernetesConfigResultEntryRelationship(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/kubernetes_config_result_entry_response.py b/intersight/model/kubernetes_config_result_entry_response.py index 5ecb198b5e..e5487a2f32 100644 --- a/intersight/model/kubernetes_config_result_entry_response.py +++ b/intersight/model/kubernetes_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/kubernetes_config_result_list.py b/intersight/model/kubernetes_config_result_list.py index ec74ffaef0..a830143319 100644 --- a/intersight/model/kubernetes_config_result_list.py +++ b/intersight/model/kubernetes_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/kubernetes_config_result_list_all_of.py b/intersight/model/kubernetes_config_result_list_all_of.py index 2c6d12630c..382c85b6d1 100644 --- a/intersight/model/kubernetes_config_result_list_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_config_result_relationship.py b/intersight/model/kubernetes_config_result_relationship.py index 8e4e76abac..ffde13c956 100644 --- a/intersight/model/kubernetes_config_result_relationship.py +++ b/intersight/model/kubernetes_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 KubernetesConfigResultRelationship(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 KubernetesConfigResultRelationship(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 KubernetesConfigResultRelationship(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 KubernetesConfigResultRelationship(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 KubernetesConfigResultRelationship(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 KubernetesConfigResultRelationship(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 KubernetesConfigResultRelationship(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 KubernetesConfigResultRelationship(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 KubernetesConfigResultRelationship(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 KubernetesConfigResultRelationship(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/kubernetes_config_result_response.py b/intersight/model/kubernetes_config_result_response.py index 005c245fd8..99912a08c4 100644 --- a/intersight/model/kubernetes_config_result_response.py +++ b/intersight/model/kubernetes_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/kubernetes_configuration.py b/intersight/model/kubernetes_configuration.py index 5cbb60deed..170fce4f9d 100644 --- a/intersight/model/kubernetes_configuration.py +++ b/intersight/model/kubernetes_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/kubernetes_configuration_all_of.py b/intersight/model/kubernetes_configuration_all_of.py index 25092c9d29..69aa9f989d 100644 --- a/intersight/model/kubernetes_configuration_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_container_runtime_policy.py b/intersight/model/kubernetes_container_runtime_policy.py index 55b2a5088b..1fd21efa42 100644 --- a/intersight/model/kubernetes_container_runtime_policy.py +++ b/intersight/model/kubernetes_container_runtime_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/kubernetes_container_runtime_policy_all_of.py b/intersight/model/kubernetes_container_runtime_policy_all_of.py index 65a8b7c7a2..6da3d39acc 100644 --- a/intersight/model/kubernetes_container_runtime_policy_all_of.py +++ b/intersight/model/kubernetes_container_runtime_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/kubernetes_container_runtime_policy_list.py b/intersight/model/kubernetes_container_runtime_policy_list.py index 17cd0fab91..6002a45df8 100644 --- a/intersight/model/kubernetes_container_runtime_policy_list.py +++ b/intersight/model/kubernetes_container_runtime_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/kubernetes_container_runtime_policy_list_all_of.py b/intersight/model/kubernetes_container_runtime_policy_list_all_of.py index e436379ca3..f21a7a7f03 100644 --- a/intersight/model/kubernetes_container_runtime_policy_list_all_of.py +++ b/intersight/model/kubernetes_container_runtime_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/kubernetes_container_runtime_policy_relationship.py b/intersight/model/kubernetes_container_runtime_policy_relationship.py index 939dc73809..63de8c6c89 100644 --- a/intersight/model/kubernetes_container_runtime_policy_relationship.py +++ b/intersight/model/kubernetes_container_runtime_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 KubernetesContainerRuntimePolicyRelationship(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 KubernetesContainerRuntimePolicyRelationship(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 KubernetesContainerRuntimePolicyRelationship(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 KubernetesContainerRuntimePolicyRelationship(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 KubernetesContainerRuntimePolicyRelationship(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 KubernetesContainerRuntimePolicyRelationship(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 KubernetesContainerRuntimePolicyRelationship(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 KubernetesContainerRuntimePolicyRelationship(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 KubernetesContainerRuntimePolicyRelationship(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 KubernetesContainerRuntimePolicyRelationship(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/kubernetes_container_runtime_policy_response.py b/intersight/model/kubernetes_container_runtime_policy_response.py index 3a346bf570..0a3f59f0a0 100644 --- a/intersight/model/kubernetes_container_runtime_policy_response.py +++ b/intersight/model/kubernetes_container_runtime_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/kubernetes_daemon_set.py b/intersight/model/kubernetes_daemon_set.py index 3fd1c3aa9c..91f9467f9d 100644 --- a/intersight/model/kubernetes_daemon_set.py +++ b/intersight/model/kubernetes_daemon_set.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_daemon_set_all_of.py b/intersight/model/kubernetes_daemon_set_all_of.py index 4186576d7d..1c11959dab 100644 --- a/intersight/model/kubernetes_daemon_set_all_of.py +++ b/intersight/model/kubernetes_daemon_set_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_daemon_set_list.py b/intersight/model/kubernetes_daemon_set_list.py index c316732f89..68de8726ec 100644 --- a/intersight/model/kubernetes_daemon_set_list.py +++ b/intersight/model/kubernetes_daemon_set_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/kubernetes_daemon_set_list_all_of.py b/intersight/model/kubernetes_daemon_set_list_all_of.py index 9837df8c61..adb2f73b8e 100644 --- a/intersight/model/kubernetes_daemon_set_list_all_of.py +++ b/intersight/model/kubernetes_daemon_set_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/kubernetes_daemon_set_response.py b/intersight/model/kubernetes_daemon_set_response.py index 1d570b7e22..f69b657de4 100644 --- a/intersight/model/kubernetes_daemon_set_response.py +++ b/intersight/model/kubernetes_daemon_set_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/kubernetes_daemon_set_status.py b/intersight/model/kubernetes_daemon_set_status.py index 9dac61c6df..e0bf38afee 100644 --- a/intersight/model/kubernetes_daemon_set_status.py +++ b/intersight/model/kubernetes_daemon_set_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/kubernetes_daemon_set_status_all_of.py b/intersight/model/kubernetes_daemon_set_status_all_of.py index 605e2c2c94..e956fea7e4 100644 --- a/intersight/model/kubernetes_daemon_set_status_all_of.py +++ b/intersight/model/kubernetes_daemon_set_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/kubernetes_deployment.py b/intersight/model/kubernetes_deployment.py index 2a4707c924..d10c9fb971 100644 --- a/intersight/model/kubernetes_deployment.py +++ b/intersight/model/kubernetes_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/kubernetes_deployment_all_of.py b/intersight/model/kubernetes_deployment_all_of.py index 366c9f4e94..8523358614 100644 --- a/intersight/model/kubernetes_deployment_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_deployment_list.py b/intersight/model/kubernetes_deployment_list.py index b6de9ad664..50d5f0944a 100644 --- a/intersight/model/kubernetes_deployment_list.py +++ b/intersight/model/kubernetes_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/kubernetes_deployment_list_all_of.py b/intersight/model/kubernetes_deployment_list_all_of.py index 393269b6dc..5d0bec0dbf 100644 --- a/intersight/model/kubernetes_deployment_list_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_deployment_response.py b/intersight/model/kubernetes_deployment_response.py index 86c1542492..c33f82d1e9 100644 --- a/intersight/model/kubernetes_deployment_response.py +++ b/intersight/model/kubernetes_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/kubernetes_deployment_status.py b/intersight/model/kubernetes_deployment_status.py index 28e30476a7..665e565882 100644 --- a/intersight/model/kubernetes_deployment_status.py +++ b/intersight/model/kubernetes_deployment_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/kubernetes_deployment_status_all_of.py b/intersight/model/kubernetes_deployment_status_all_of.py index aec788ec2c..e0edbdb887 100644 --- a/intersight/model/kubernetes_deployment_status_all_of.py +++ b/intersight/model/kubernetes_deployment_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/kubernetes_essential_addon.py b/intersight/model/kubernetes_essential_addon.py index 2df2daa9a2..c5727f1fc5 100644 --- a/intersight/model/kubernetes_essential_addon.py +++ b/intersight/model/kubernetes_essential_addon.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_essential_addon_all_of.py b/intersight/model/kubernetes_essential_addon_all_of.py index 7b462cced4..73299bca14 100644 --- a/intersight/model/kubernetes_essential_addon_all_of.py +++ b/intersight/model/kubernetes_essential_addon_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_esxi_virtual_machine_infra_config.py b/intersight/model/kubernetes_esxi_virtual_machine_infra_config.py index 72942e5d30..772ced7c7d 100644 --- a/intersight/model/kubernetes_esxi_virtual_machine_infra_config.py +++ b/intersight/model/kubernetes_esxi_virtual_machine_infra_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/kubernetes_esxi_virtual_machine_infra_config_all_of.py b/intersight/model/kubernetes_esxi_virtual_machine_infra_config_all_of.py index 510dc134da..88879c82da 100644 --- a/intersight/model/kubernetes_esxi_virtual_machine_infra_config_all_of.py +++ b/intersight/model/kubernetes_esxi_virtual_machine_infra_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/kubernetes_ethernet.py b/intersight/model/kubernetes_ethernet.py new file mode 100644 index 0000000000..96fccf4e39 --- /dev/null +++ b/intersight/model/kubernetes_ethernet.py @@ -0,0 +1,259 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.kubernetes_ethernet_all_of import KubernetesEthernetAllOf + from intersight.model.kubernetes_ethernet_matcher import KubernetesEthernetMatcher + from intersight.model.kubernetes_network_interface import KubernetesNetworkInterface + globals()['KubernetesEthernetAllOf'] = KubernetesEthernetAllOf + globals()['KubernetesEthernetMatcher'] = KubernetesEthernetMatcher + globals()['KubernetesNetworkInterface'] = KubernetesNetworkInterface + + +class KubernetesEthernet(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',): { + 'KUBERNETES.ETHERNET': "kubernetes.Ethernet", + }, + ('object_type',): { + 'KUBERNETES.ETHERNET': "kubernetes.Ethernet", + }, + } + + 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 + 'matcher': (KubernetesEthernetMatcher,), # noqa: E501 + 'addresses': ([str], none_type,), # noqa: E501 + 'gateway': (str,), # noqa: E501 + 'mtu': (int,), # 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 + 'matcher': 'Matcher', # noqa: E501 + 'addresses': 'Addresses', # noqa: E501 + 'gateway': 'Gateway', # noqa: E501 + 'mtu': 'Mtu', # 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 + """KubernetesEthernet - 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 "kubernetes.Ethernet", must be one of ["kubernetes.Ethernet", ] # 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 "kubernetes.Ethernet", must be one of ["kubernetes.Ethernet", ] # 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,) + matcher (KubernetesEthernetMatcher): [optional] # noqa: E501 + addresses ([str], none_type): [optional] # noqa: E501 + gateway (str): The Network Gateway for the Network Interface.. [optional] # noqa: E501 + mtu (int): The MTU to assign to this Network Interface.. [optional] # noqa: E501 + name (str): Name for this network interface.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.Ethernet") + object_type = kwargs.get('object_type', "kubernetes.Ethernet") + _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': [ + KubernetesEthernetAllOf, + KubernetesNetworkInterface, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/kubernetes_ethernet_all_of.py b/intersight/model/kubernetes_ethernet_all_of.py new file mode 100644 index 0000000000..dfbd8927a9 --- /dev/null +++ b/intersight/model/kubernetes_ethernet_all_of.py @@ -0,0 +1,190 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.kubernetes_ethernet_matcher import KubernetesEthernetMatcher + globals()['KubernetesEthernetMatcher'] = KubernetesEthernetMatcher + + +class KubernetesEthernetAllOf(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',): { + 'KUBERNETES.ETHERNET': "kubernetes.Ethernet", + }, + ('object_type',): { + 'KUBERNETES.ETHERNET': "kubernetes.Ethernet", + }, + } + + 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 + 'matcher': (KubernetesEthernetMatcher,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'matcher': 'Matcher', # 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 + """KubernetesEthernetAllOf - 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 "kubernetes.Ethernet", must be one of ["kubernetes.Ethernet", ] # 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 "kubernetes.Ethernet", must be one of ["kubernetes.Ethernet", ] # 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,) + matcher (KubernetesEthernetMatcher): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.Ethernet") + object_type = kwargs.get('object_type', "kubernetes.Ethernet") + _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/kubernetes_ethernet_matcher.py b/intersight/model/kubernetes_ethernet_matcher.py new file mode 100644 index 0000000000..13c8c09ce0 --- /dev/null +++ b/intersight/model/kubernetes_ethernet_matcher.py @@ -0,0 +1,252 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.kubernetes_ethernet_matcher_all_of import KubernetesEthernetMatcherAllOf + from intersight.model.mo_base_complex_type import MoBaseComplexType + globals()['KubernetesEthernetMatcherAllOf'] = KubernetesEthernetMatcherAllOf + globals()['MoBaseComplexType'] = MoBaseComplexType + + +class KubernetesEthernetMatcher(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',): { + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + }, + ('object_type',): { + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + }, + ('type',): { + 'NAME': "Name", + 'MACADDRESS': "MacAddress", + }, + } + + 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 + 'type': (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 + 'type': 'Type', # 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 + """KubernetesEthernetMatcher - 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 "kubernetes.EthernetMatcher", must be one of ["kubernetes.EthernetMatcher", ] # 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 "kubernetes.EthernetMatcher", must be one of ["kubernetes.EthernetMatcher", ] # 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,) + type (str): Which property we should use to find the ethernet interface. * `Name` - A network interface name, e.g. eth0, eno9. * `MacAddress` - A network interface Mac Address.. [optional] if omitted the server will use the default value of "Name" # noqa: E501 + value (str): The value to match for the property specified by type.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.EthernetMatcher") + object_type = kwargs.get('object_type', "kubernetes.EthernetMatcher") + _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': [ + KubernetesEthernetMatcherAllOf, + MoBaseComplexType, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/kubernetes_ethernet_matcher_all_of.py b/intersight/model/kubernetes_ethernet_matcher_all_of.py new file mode 100644 index 0000000000..01b5f14a2c --- /dev/null +++ b/intersight/model/kubernetes_ethernet_matcher_all_of.py @@ -0,0 +1,192 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 KubernetesEthernetMatcherAllOf(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',): { + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + }, + ('object_type',): { + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + }, + ('type',): { + 'NAME': "Name", + 'MACADDRESS': "MacAddress", + }, + } + + 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 + 'type': (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 + 'type': 'Type', # 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 + """KubernetesEthernetMatcherAllOf - 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 "kubernetes.EthernetMatcher", must be one of ["kubernetes.EthernetMatcher", ] # 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 "kubernetes.EthernetMatcher", must be one of ["kubernetes.EthernetMatcher", ] # 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,) + type (str): Which property we should use to find the ethernet interface. * `Name` - A network interface name, e.g. eth0, eno9. * `MacAddress` - A network interface Mac Address.. [optional] if omitted the server will use the default value of "Name" # noqa: E501 + value (str): The value to match for the property specified by type.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.EthernetMatcher") + object_type = kwargs.get('object_type', "kubernetes.EthernetMatcher") + _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/kubernetes_hyper_flex_ap_virtual_machine_infra_config.py b/intersight/model/kubernetes_hyper_flex_ap_virtual_machine_infra_config.py index b34df96a9e..15ec1301d2 100644 --- a/intersight/model/kubernetes_hyper_flex_ap_virtual_machine_infra_config.py +++ b/intersight/model/kubernetes_hyper_flex_ap_virtual_machine_infra_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 """ @@ -29,7 +29,9 @@ def lazy_import(): from intersight.model.kubernetes_base_virtual_machine_infra_config import KubernetesBaseVirtualMachineInfraConfig + from intersight.model.kubernetes_hyper_flex_ap_virtual_machine_infra_config_all_of import KubernetesHyperFlexApVirtualMachineInfraConfigAllOf globals()['KubernetesBaseVirtualMachineInfraConfig'] = KubernetesBaseVirtualMachineInfraConfig + globals()['KubernetesHyperFlexApVirtualMachineInfraConfigAllOf'] = KubernetesHyperFlexApVirtualMachineInfraConfigAllOf class KubernetesHyperFlexApVirtualMachineInfraConfig(ModelComposed): @@ -58,12 +60,15 @@ class KubernetesHyperFlexApVirtualMachineInfraConfig(ModelComposed): allowed_values = { ('class_id',): { - 'ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig", - 'HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig", + 'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig", }, ('object_type',): { - 'ESXIVIRTUALMACHINEINFRACONFIG': "kubernetes.EsxiVirtualMachineInfraConfig", - 'HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig", + 'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig", + }, + ('disk_mode',): { + 'BLOCK': "Block", + 'FILESYSTEM': "Filesystem", + 'EMPTY': "", }, } @@ -95,6 +100,7 @@ def openapi_types(): return { 'class_id': (str,), # noqa: E501 'object_type': (str,), # noqa: E501 + 'disk_mode': (str,), # noqa: E501 'interfaces': ([str], none_type,), # noqa: E501 } @@ -109,6 +115,7 @@ def discriminator(): attribute_map = { 'class_id': 'ClassId', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 + 'disk_mode': 'DiskMode', # noqa: E501 'interfaces': 'Interfaces', # noqa: E501 } @@ -125,14 +132,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 """KubernetesHyperFlexApVirtualMachineInfraConfig - 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.. defaults to "kubernetes.HyperFlexApVirtualMachineInfraConfig", must be one of ["kubernetes.HyperFlexApVirtualMachineInfraConfig", ] # 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 "kubernetes.HyperFlexApVirtualMachineInfraConfig", must be one of ["kubernetes.HyperFlexApVirtualMachineInfraConfig", ] # 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. @@ -163,9 +170,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,) + disk_mode (str): Disk mode to use for volumes. * `Block` - It is a Block virtual disk. * `Filesystem` - It is a File system virtual disk. * `` - Disk mode is either unknown or not supported.. [optional] if omitted the server will use the default value of "Block" # noqa: E501 interfaces ([str], none_type): [optional] # noqa: E501 """ + class_id = kwargs.get('class_id', "kubernetes.HyperFlexApVirtualMachineInfraConfig") + object_type = kwargs.get('object_type', "kubernetes.HyperFlexApVirtualMachineInfraConfig") _check_type = kwargs.pop('_check_type', True) _spec_property_naming = kwargs.pop('_spec_property_naming', False) _path_to_item = kwargs.pop('_path_to_item', ()) @@ -236,6 +246,7 @@ def _composed_schemas(): ], 'allOf': [ KubernetesBaseVirtualMachineInfraConfig, + KubernetesHyperFlexApVirtualMachineInfraConfigAllOf, ], 'oneOf': [ ], diff --git a/intersight/model/kubernetes_hyper_flex_ap_virtual_machine_infra_config_all_of.py b/intersight/model/kubernetes_hyper_flex_ap_virtual_machine_infra_config_all_of.py new file mode 100644 index 0000000000..1597734bdc --- /dev/null +++ b/intersight/model/kubernetes_hyper_flex_ap_virtual_machine_infra_config_all_of.py @@ -0,0 +1,190 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 KubernetesHyperFlexApVirtualMachineInfraConfigAllOf(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',): { + 'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig", + }, + ('object_type',): { + 'KUBERNETES.HYPERFLEXAPVIRTUALMACHINEINFRACONFIG': "kubernetes.HyperFlexApVirtualMachineInfraConfig", + }, + ('disk_mode',): { + 'BLOCK': "Block", + 'FILESYSTEM': "Filesystem", + 'EMPTY': "", + }, + } + + 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 + 'disk_mode': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'disk_mode': 'DiskMode', # 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 + """KubernetesHyperFlexApVirtualMachineInfraConfigAllOf - 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 "kubernetes.HyperFlexApVirtualMachineInfraConfig", must be one of ["kubernetes.HyperFlexApVirtualMachineInfraConfig", ] # 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 "kubernetes.HyperFlexApVirtualMachineInfraConfig", must be one of ["kubernetes.HyperFlexApVirtualMachineInfraConfig", ] # 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,) + disk_mode (str): Disk mode to use for volumes. * `Block` - It is a Block virtual disk. * `Filesystem` - It is a File system virtual disk. * `` - Disk mode is either unknown or not supported.. [optional] if omitted the server will use the default value of "Block" # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.HyperFlexApVirtualMachineInfraConfig") + object_type = kwargs.get('object_type', "kubernetes.HyperFlexApVirtualMachineInfraConfig") + _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/kubernetes_ingress.py b/intersight/model/kubernetes_ingress.py index 741acdb039..9325f82496 100644 --- a/intersight/model/kubernetes_ingress.py +++ b/intersight/model/kubernetes_ingress.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_ingress_all_of.py b/intersight/model/kubernetes_ingress_all_of.py index 5c8021d5ac..dd7d9fb6fb 100644 --- a/intersight/model/kubernetes_ingress_all_of.py +++ b/intersight/model/kubernetes_ingress_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_ingress_list.py b/intersight/model/kubernetes_ingress_list.py index 01f90dcfd3..d3009cb053 100644 --- a/intersight/model/kubernetes_ingress_list.py +++ b/intersight/model/kubernetes_ingress_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/kubernetes_ingress_list_all_of.py b/intersight/model/kubernetes_ingress_list_all_of.py index 0554b659f9..b54e46e9fc 100644 --- a/intersight/model/kubernetes_ingress_list_all_of.py +++ b/intersight/model/kubernetes_ingress_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/kubernetes_ingress_response.py b/intersight/model/kubernetes_ingress_response.py index e16421daa1..edd197ed5c 100644 --- a/intersight/model/kubernetes_ingress_response.py +++ b/intersight/model/kubernetes_ingress_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/kubernetes_ingress_status.py b/intersight/model/kubernetes_ingress_status.py index cf831b014f..6e99a52115 100644 --- a/intersight/model/kubernetes_ingress_status.py +++ b/intersight/model/kubernetes_ingress_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/kubernetes_ingress_status_all_of.py b/intersight/model/kubernetes_ingress_status_all_of.py index fc306de124..f5ef89ba0f 100644 --- a/intersight/model/kubernetes_ingress_status_all_of.py +++ b/intersight/model/kubernetes_ingress_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/kubernetes_key_value.py b/intersight/model/kubernetes_key_value.py index d720b7e34e..b51637e93a 100644 --- a/intersight/model/kubernetes_key_value.py +++ b/intersight/model/kubernetes_key_value.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_key_value_all_of.py b/intersight/model/kubernetes_key_value_all_of.py index 35bd38cb09..2ba20ed681 100644 --- a/intersight/model/kubernetes_key_value_all_of.py +++ b/intersight/model/kubernetes_key_value_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_kubernetes_resource.py b/intersight/model/kubernetes_kubernetes_resource.py index fce7e0a302..15598f4cd7 100644 --- a/intersight/model/kubernetes_kubernetes_resource.py +++ b/intersight/model/kubernetes_kubernetes_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/kubernetes_kubernetes_resource_all_of.py b/intersight/model/kubernetes_kubernetes_resource_all_of.py index 82f94b9003..7487921a9f 100644 --- a/intersight/model/kubernetes_kubernetes_resource_all_of.py +++ b/intersight/model/kubernetes_kubernetes_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/kubernetes_load_balancer.py b/intersight/model/kubernetes_load_balancer.py index 940e2a465f..f3ad1476de 100644 --- a/intersight/model/kubernetes_load_balancer.py +++ b/intersight/model/kubernetes_load_balancer.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_load_balancer_all_of.py b/intersight/model/kubernetes_load_balancer_all_of.py index 992b93d0ab..515e8f1e06 100644 --- a/intersight/model/kubernetes_load_balancer_all_of.py +++ b/intersight/model/kubernetes_load_balancer_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_network_interface.py b/intersight/model/kubernetes_network_interface.py new file mode 100644 index 0000000000..499696cda3 --- /dev/null +++ b/intersight/model/kubernetes_network_interface.py @@ -0,0 +1,261 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.kubernetes_ethernet import KubernetesEthernet + from intersight.model.kubernetes_network_interface_all_of import KubernetesNetworkInterfaceAllOf + from intersight.model.kubernetes_ovs_bond import KubernetesOvsBond + from intersight.model.mo_base_complex_type import MoBaseComplexType + globals()['KubernetesEthernet'] = KubernetesEthernet + globals()['KubernetesNetworkInterfaceAllOf'] = KubernetesNetworkInterfaceAllOf + globals()['KubernetesOvsBond'] = KubernetesOvsBond + globals()['MoBaseComplexType'] = MoBaseComplexType + + +class KubernetesNetworkInterface(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',): { + 'ETHERNET': "kubernetes.Ethernet", + 'OVSBOND': "kubernetes.OvsBond", + }, + ('object_type',): { + 'ETHERNET': "kubernetes.Ethernet", + 'OVSBOND': "kubernetes.OvsBond", + }, + } + + 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 + 'addresses': ([str], none_type,), # noqa: E501 + 'gateway': (str,), # noqa: E501 + 'mtu': (int,), # noqa: E501 + 'name': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + lazy_import() + val = { + 'kubernetes.Ethernet': KubernetesEthernet, + 'kubernetes.OvsBond': KubernetesOvsBond, + } + if not val: + return None + return {'class_id': val} + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'addresses': 'Addresses', # noqa: E501 + 'gateway': 'Gateway', # noqa: E501 + 'mtu': 'Mtu', # 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, class_id, object_type, *args, **kwargs): # noqa: E501 + """KubernetesNetworkInterface - 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: + _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,) + addresses ([str], none_type): [optional] # noqa: E501 + gateway (str): The Network Gateway for the Network Interface.. [optional] # noqa: E501 + mtu (int): The MTU to assign to this Network Interface.. [optional] # noqa: E501 + name (str): Name for this network interface.. [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 = { + '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': [ + KubernetesNetworkInterfaceAllOf, + MoBaseComplexType, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/kubernetes_network_interface_all_of.py b/intersight/model/kubernetes_network_interface_all_of.py new file mode 100644 index 0000000000..ff2556321b --- /dev/null +++ b/intersight/model/kubernetes_network_interface_all_of.py @@ -0,0 +1,194 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 KubernetesNetworkInterfaceAllOf(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',): { + 'ETHERNET': "kubernetes.Ethernet", + 'OVSBOND': "kubernetes.OvsBond", + }, + ('object_type',): { + 'ETHERNET': "kubernetes.Ethernet", + 'OVSBOND': "kubernetes.OvsBond", + }, + } + + 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 + 'addresses': ([str], none_type,), # noqa: E501 + 'gateway': (str,), # noqa: E501 + 'mtu': (int,), # noqa: E501 + 'name': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'addresses': 'Addresses', # noqa: E501 + 'gateway': 'Gateway', # noqa: E501 + 'mtu': 'Mtu', # noqa: E501 + 'name': 'Name', # 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, class_id, object_type, *args, **kwargs): # noqa: E501 + """KubernetesNetworkInterfaceAllOf - 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: + _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,) + addresses ([str], none_type): [optional] # noqa: E501 + gateway (str): The Network Gateway for the Network Interface.. [optional] # noqa: E501 + mtu (int): The MTU to assign to this Network Interface.. [optional] # noqa: E501 + name (str): Name for this network interface.. [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__,) + + 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/kubernetes_network_policy.py b/intersight/model/kubernetes_network_policy.py index 71e2b98e9c..38cdfe7b43 100644 --- a/intersight/model/kubernetes_network_policy.py +++ b/intersight/model/kubernetes_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/kubernetes_network_policy_all_of.py b/intersight/model/kubernetes_network_policy_all_of.py index b576f36d9a..66538471ef 100644 --- a/intersight/model/kubernetes_network_policy_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_network_policy_list.py b/intersight/model/kubernetes_network_policy_list.py index b005df7814..479e4df859 100644 --- a/intersight/model/kubernetes_network_policy_list.py +++ b/intersight/model/kubernetes_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/kubernetes_network_policy_list_all_of.py b/intersight/model/kubernetes_network_policy_list_all_of.py index 1d95c3b9c0..a8a10dc0a2 100644 --- a/intersight/model/kubernetes_network_policy_list_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_network_policy_relationship.py b/intersight/model/kubernetes_network_policy_relationship.py index b20f9c1543..9b5e52daf7 100644 --- a/intersight/model/kubernetes_network_policy_relationship.py +++ b/intersight/model/kubernetes_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 """ @@ -82,6 +82,8 @@ class KubernetesNetworkPolicyRelationship(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 KubernetesNetworkPolicyRelationship(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 KubernetesNetworkPolicyRelationship(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 KubernetesNetworkPolicyRelationship(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 KubernetesNetworkPolicyRelationship(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 KubernetesNetworkPolicyRelationship(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 KubernetesNetworkPolicyRelationship(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 KubernetesNetworkPolicyRelationship(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 KubernetesNetworkPolicyRelationship(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 KubernetesNetworkPolicyRelationship(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/kubernetes_network_policy_response.py b/intersight/model/kubernetes_network_policy_response.py index 10407d5164..6204944c19 100644 --- a/intersight/model/kubernetes_network_policy_response.py +++ b/intersight/model/kubernetes_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/kubernetes_node.py b/intersight/model/kubernetes_node.py index 8c990f031e..7fcbb1fd9e 100644 --- a/intersight/model/kubernetes_node.py +++ b/intersight/model/kubernetes_node.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_node_address.py b/intersight/model/kubernetes_node_address.py index 9f0543a218..309569d1c3 100644 --- a/intersight/model/kubernetes_node_address.py +++ b/intersight/model/kubernetes_node_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/kubernetes_node_address_all_of.py b/intersight/model/kubernetes_node_address_all_of.py index 966dacb2d3..3e0df8a108 100644 --- a/intersight/model/kubernetes_node_address_all_of.py +++ b/intersight/model/kubernetes_node_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/kubernetes_node_all_of.py b/intersight/model/kubernetes_node_all_of.py index 6530b0df65..ad6d600158 100644 --- a/intersight/model/kubernetes_node_all_of.py +++ b/intersight/model/kubernetes_node_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_node_group_label.py b/intersight/model/kubernetes_node_group_label.py index db9a48c934..5539edfa50 100644 --- a/intersight/model/kubernetes_node_group_label.py +++ b/intersight/model/kubernetes_node_group_label.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_node_group_label_all_of.py b/intersight/model/kubernetes_node_group_label_all_of.py index 33705f739c..848efa7706 100644 --- a/intersight/model/kubernetes_node_group_label_all_of.py +++ b/intersight/model/kubernetes_node_group_label_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_node_group_profile.py b/intersight/model/kubernetes_node_group_profile.py index 2a3d49d27e..fc36b6c33c 100644 --- a/intersight/model/kubernetes_node_group_profile.py +++ b/intersight/model/kubernetes_node_group_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/kubernetes_node_group_profile_all_of.py b/intersight/model/kubernetes_node_group_profile_all_of.py index b67ea7711b..671e1a1bed 100644 --- a/intersight/model/kubernetes_node_group_profile_all_of.py +++ b/intersight/model/kubernetes_node_group_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/kubernetes_node_group_profile_list.py b/intersight/model/kubernetes_node_group_profile_list.py index 552833c35e..cbcd58ef26 100644 --- a/intersight/model/kubernetes_node_group_profile_list.py +++ b/intersight/model/kubernetes_node_group_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/kubernetes_node_group_profile_list_all_of.py b/intersight/model/kubernetes_node_group_profile_list_all_of.py index 47468e999a..2c6aa29b7f 100644 --- a/intersight/model/kubernetes_node_group_profile_list_all_of.py +++ b/intersight/model/kubernetes_node_group_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/kubernetes_node_group_profile_relationship.py b/intersight/model/kubernetes_node_group_profile_relationship.py index b5b7a424b3..576c11161c 100644 --- a/intersight/model/kubernetes_node_group_profile_relationship.py +++ b/intersight/model/kubernetes_node_group_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 """ @@ -100,6 +100,8 @@ class KubernetesNodeGroupProfileRelationship(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", @@ -116,6 +118,7 @@ class KubernetesNodeGroupProfileRelationship(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", @@ -164,9 +167,12 @@ class KubernetesNodeGroupProfileRelationship(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", @@ -230,10 +236,6 @@ class KubernetesNodeGroupProfileRelationship(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", @@ -242,6 +244,7 @@ class KubernetesNodeGroupProfileRelationship(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", @@ -490,6 +493,7 @@ class KubernetesNodeGroupProfileRelationship(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", @@ -659,6 +663,11 @@ class KubernetesNodeGroupProfileRelationship(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", @@ -774,6 +783,7 @@ class KubernetesNodeGroupProfileRelationship(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", @@ -805,6 +815,7 @@ class KubernetesNodeGroupProfileRelationship(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", @@ -837,12 +848,14 @@ class KubernetesNodeGroupProfileRelationship(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/kubernetes_node_group_profile_response.py b/intersight/model/kubernetes_node_group_profile_response.py index 05ad2ea275..4237c829b1 100644 --- a/intersight/model/kubernetes_node_group_profile_response.py +++ b/intersight/model/kubernetes_node_group_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/kubernetes_node_group_taint.py b/intersight/model/kubernetes_node_group_taint.py index 3f71c6831a..e5cd094a5d 100644 --- a/intersight/model/kubernetes_node_group_taint.py +++ b/intersight/model/kubernetes_node_group_taint.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_node_group_taint_all_of.py b/intersight/model/kubernetes_node_group_taint_all_of.py index c254354b23..20c6b0192f 100644 --- a/intersight/model/kubernetes_node_group_taint_all_of.py +++ b/intersight/model/kubernetes_node_group_taint_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_node_info.py b/intersight/model/kubernetes_node_info.py index bcd0d11076..e8dc288971 100644 --- a/intersight/model/kubernetes_node_info.py +++ b/intersight/model/kubernetes_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/kubernetes_node_info_all_of.py b/intersight/model/kubernetes_node_info_all_of.py index 6f8e626074..3e53c6da78 100644 --- a/intersight/model/kubernetes_node_info_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_node_list.py b/intersight/model/kubernetes_node_list.py index f3e7b14705..f9c81bf02b 100644 --- a/intersight/model/kubernetes_node_list.py +++ b/intersight/model/kubernetes_node_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/kubernetes_node_list_all_of.py b/intersight/model/kubernetes_node_list_all_of.py index 8162655d3b..e2900ae0a9 100644 --- a/intersight/model/kubernetes_node_list_all_of.py +++ b/intersight/model/kubernetes_node_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/kubernetes_node_profile.py b/intersight/model/kubernetes_node_profile.py index 3b0d69b086..f3c2960304 100644 --- a/intersight/model/kubernetes_node_profile.py +++ b/intersight/model/kubernetes_node_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 """ @@ -30,6 +30,7 @@ def lazy_import(): from intersight.model.asset_device_registration_relationship import AssetDeviceRegistrationRelationship from intersight.model.display_names import DisplayNames + from intersight.model.kubernetes_baremetal_node_profile import KubernetesBaremetalNodeProfile from intersight.model.kubernetes_config_result_relationship import KubernetesConfigResultRelationship from intersight.model.kubernetes_node_group_profile_relationship import KubernetesNodeGroupProfileRelationship from intersight.model.kubernetes_node_profile_all_of import KubernetesNodeProfileAllOf @@ -44,6 +45,7 @@ def lazy_import(): from intersight.model.policy_config_context import PolicyConfigContext globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship globals()['DisplayNames'] = DisplayNames + globals()['KubernetesBaremetalNodeProfile'] = KubernetesBaremetalNodeProfile globals()['KubernetesConfigResultRelationship'] = KubernetesConfigResultRelationship globals()['KubernetesNodeGroupProfileRelationship'] = KubernetesNodeGroupProfileRelationship globals()['KubernetesNodeProfileAllOf'] = KubernetesNodeProfileAllOf @@ -84,10 +86,12 @@ class KubernetesNodeProfile(ModelComposed): allowed_values = { ('class_id',): { - 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", + 'BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", + 'VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", }, ('object_type',): { - 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", + 'BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", + 'VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", }, ('cloud_provider',): { 'NOPROVIDER': "noProvider", @@ -168,6 +172,7 @@ def openapi_types(): def discriminator(): lazy_import() val = { + 'kubernetes.BaremetalNodeProfile': KubernetesBaremetalNodeProfile, 'kubernetes.VirtualMachineNodeProfile': KubernetesVirtualMachineNodeProfile, } if not val: @@ -217,14 +222,14 @@ def discriminator(): ]) @convert_js_args_to_python_args - def __init__(self, *args, **kwargs): # noqa: E501 + def __init__(self, class_id, object_type, *args, **kwargs): # noqa: E501 """KubernetesNodeProfile - 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 "kubernetes.VirtualMachineNodeProfile", must be one of ["kubernetes.VirtualMachineNodeProfile", ] # 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 "kubernetes.VirtualMachineNodeProfile", must be one of ["kubernetes.VirtualMachineNodeProfile", ] # 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. @@ -282,8 +287,6 @@ def __init__(self, *args, **kwargs): # noqa: E501 policy_bucket ([PolicyAbstractPolicyRelationship], none_type): An array of relationships to policyAbstractPolicy resources.. [optional] # noqa: E501 """ - class_id = kwargs.get('class_id', "kubernetes.VirtualMachineNodeProfile") - object_type = kwargs.get('object_type', "kubernetes.VirtualMachineNodeProfile") _check_type = kwargs.pop('_check_type', True) _spec_property_naming = kwargs.pop('_spec_property_naming', False) _path_to_item = kwargs.pop('_path_to_item', ()) diff --git a/intersight/model/kubernetes_node_profile_all_of.py b/intersight/model/kubernetes_node_profile_all_of.py index 9c2fc5ac2f..f7a2b9c3e1 100644 --- a/intersight/model/kubernetes_node_profile_all_of.py +++ b/intersight/model/kubernetes_node_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 """ @@ -64,10 +64,12 @@ class KubernetesNodeProfileAllOf(ModelNormal): allowed_values = { ('class_id',): { - 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", + 'BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", + 'VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", }, ('object_type',): { - 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", + 'BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", + 'VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", }, ('cloud_provider',): { 'NOPROVIDER': "noProvider", @@ -130,14 +132,14 @@ def discriminator(): ]) @convert_js_args_to_python_args - def __init__(self, *args, **kwargs): # noqa: E501 + def __init__(self, class_id, object_type, *args, **kwargs): # noqa: E501 """KubernetesNodeProfileAllOf - 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 "kubernetes.VirtualMachineNodeProfile", must be one of ["kubernetes.VirtualMachineNodeProfile", ] # 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 "kubernetes.VirtualMachineNodeProfile", must be one of ["kubernetes.VirtualMachineNodeProfile", ] # 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. @@ -175,8 +177,6 @@ def __init__(self, *args, **kwargs): # noqa: E501 version (KubernetesVersionRelationship): [optional] # noqa: E501 """ - class_id = kwargs.get('class_id', "kubernetes.VirtualMachineNodeProfile") - object_type = kwargs.get('object_type', "kubernetes.VirtualMachineNodeProfile") _check_type = kwargs.pop('_check_type', True) _spec_property_naming = kwargs.pop('_spec_property_naming', False) _path_to_item = kwargs.pop('_path_to_item', ()) diff --git a/intersight/model/kubernetes_node_profile_relationship.py b/intersight/model/kubernetes_node_profile_relationship.py index ab7a68386c..e6ba979356 100644 --- a/intersight/model/kubernetes_node_profile_relationship.py +++ b/intersight/model/kubernetes_node_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 KubernetesNodeProfileRelationship(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 KubernetesNodeProfileRelationship(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 KubernetesNodeProfileRelationship(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 KubernetesNodeProfileRelationship(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 KubernetesNodeProfileRelationship(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 KubernetesNodeProfileRelationship(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 KubernetesNodeProfileRelationship(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 KubernetesNodeProfileRelationship(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 KubernetesNodeProfileRelationship(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 KubernetesNodeProfileRelationship(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/kubernetes_node_response.py b/intersight/model/kubernetes_node_response.py index 7510446676..48ebdf6479 100644 --- a/intersight/model/kubernetes_node_response.py +++ b/intersight/model/kubernetes_node_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/kubernetes_node_spec.py b/intersight/model/kubernetes_node_spec.py index 1307a6066c..6c4b6fe435 100644 --- a/intersight/model/kubernetes_node_spec.py +++ b/intersight/model/kubernetes_node_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_node_spec_all_of.py b/intersight/model/kubernetes_node_spec_all_of.py index bc381868ea..0726c5d1b8 100644 --- a/intersight/model/kubernetes_node_spec_all_of.py +++ b/intersight/model/kubernetes_node_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_node_status.py b/intersight/model/kubernetes_node_status.py index ed0b39ab91..baf2c24129 100644 --- a/intersight/model/kubernetes_node_status.py +++ b/intersight/model/kubernetes_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/kubernetes_node_status_all_of.py b/intersight/model/kubernetes_node_status_all_of.py index 139bb8a940..1ad658e54f 100644 --- a/intersight/model/kubernetes_node_status_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_object_meta.py b/intersight/model/kubernetes_object_meta.py index 4882953d5e..0d3fdf7eb1 100644 --- a/intersight/model/kubernetes_object_meta.py +++ b/intersight/model/kubernetes_object_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/kubernetes_object_meta_all_of.py b/intersight/model/kubernetes_object_meta_all_of.py index a5f6b4747d..43745650b9 100644 --- a/intersight/model/kubernetes_object_meta_all_of.py +++ b/intersight/model/kubernetes_object_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/kubernetes_ovs_bond.py b/intersight/model/kubernetes_ovs_bond.py new file mode 100644 index 0000000000..8879f50d84 --- /dev/null +++ b/intersight/model/kubernetes_ovs_bond.py @@ -0,0 +1,260 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.kubernetes_network_interface import KubernetesNetworkInterface + from intersight.model.kubernetes_ovs_bond_all_of import KubernetesOvsBondAllOf + globals()['KubernetesNetworkInterface'] = KubernetesNetworkInterface + globals()['KubernetesOvsBondAllOf'] = KubernetesOvsBondAllOf + + +class KubernetesOvsBond(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',): { + 'KUBERNETES.OVSBOND': "kubernetes.OvsBond", + }, + ('object_type',): { + 'KUBERNETES.OVSBOND': "kubernetes.OvsBond", + }, + } + + 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 + 'interfaces': ([str], none_type,), # noqa: E501 + 'vlan': (int,), # noqa: E501 + 'addresses': ([str], none_type,), # noqa: E501 + 'gateway': (str,), # noqa: E501 + 'mtu': (int,), # 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 + 'interfaces': 'Interfaces', # noqa: E501 + 'vlan': 'Vlan', # noqa: E501 + 'addresses': 'Addresses', # noqa: E501 + 'gateway': 'Gateway', # noqa: E501 + 'mtu': 'Mtu', # 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 + """KubernetesOvsBond - 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 "kubernetes.OvsBond", must be one of ["kubernetes.OvsBond", ] # 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 "kubernetes.OvsBond", must be one of ["kubernetes.OvsBond", ] # 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,) + interfaces ([str], none_type): [optional] # noqa: E501 + vlan (int): Native VLAN for to use for the bond.. [optional] # noqa: E501 + addresses ([str], none_type): [optional] # noqa: E501 + gateway (str): The Network Gateway for the Network Interface.. [optional] # noqa: E501 + mtu (int): The MTU to assign to this Network Interface.. [optional] # noqa: E501 + name (str): Name for this network interface.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.OvsBond") + object_type = kwargs.get('object_type', "kubernetes.OvsBond") + _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': [ + KubernetesNetworkInterface, + KubernetesOvsBondAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/kubernetes_ovs_bond_all_of.py b/intersight/model/kubernetes_ovs_bond_all_of.py new file mode 100644 index 0000000000..98e2670ec5 --- /dev/null +++ b/intersight/model/kubernetes_ovs_bond_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 KubernetesOvsBondAllOf(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',): { + 'KUBERNETES.OVSBOND': "kubernetes.OvsBond", + }, + ('object_type',): { + 'KUBERNETES.OVSBOND': "kubernetes.OvsBond", + }, + } + + 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 + 'interfaces': ([str], none_type,), # noqa: E501 + 'vlan': (int,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'interfaces': 'Interfaces', # noqa: E501 + 'vlan': 'Vlan', # 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 + """KubernetesOvsBondAllOf - 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 "kubernetes.OvsBond", must be one of ["kubernetes.OvsBond", ] # 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 "kubernetes.OvsBond", must be one of ["kubernetes.OvsBond", ] # 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,) + interfaces ([str], none_type): [optional] # noqa: E501 + vlan (int): Native VLAN for to use for the bond.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "kubernetes.OvsBond") + object_type = kwargs.get('object_type', "kubernetes.OvsBond") + _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/kubernetes_pod.py b/intersight/model/kubernetes_pod.py index dc6bcacccd..e327099146 100644 --- a/intersight/model/kubernetes_pod.py +++ b/intersight/model/kubernetes_pod.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_pod_all_of.py b/intersight/model/kubernetes_pod_all_of.py index 950efcefc8..b53d865b94 100644 --- a/intersight/model/kubernetes_pod_all_of.py +++ b/intersight/model/kubernetes_pod_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_pod_list.py b/intersight/model/kubernetes_pod_list.py index a150bd139f..5c3b56ddba 100644 --- a/intersight/model/kubernetes_pod_list.py +++ b/intersight/model/kubernetes_pod_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/kubernetes_pod_list_all_of.py b/intersight/model/kubernetes_pod_list_all_of.py index f1bb46de53..6ac4dcc246 100644 --- a/intersight/model/kubernetes_pod_list_all_of.py +++ b/intersight/model/kubernetes_pod_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/kubernetes_pod_response.py b/intersight/model/kubernetes_pod_response.py index c7acda2cd4..ba75c2618a 100644 --- a/intersight/model/kubernetes_pod_response.py +++ b/intersight/model/kubernetes_pod_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/kubernetes_pod_status.py b/intersight/model/kubernetes_pod_status.py index fb06642a1a..d329115127 100644 --- a/intersight/model/kubernetes_pod_status.py +++ b/intersight/model/kubernetes_pod_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/kubernetes_pod_status_all_of.py b/intersight/model/kubernetes_pod_status_all_of.py index 12c5fb7178..6656e6198b 100644 --- a/intersight/model/kubernetes_pod_status_all_of.py +++ b/intersight/model/kubernetes_pod_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/kubernetes_proxy_config.py b/intersight/model/kubernetes_proxy_config.py index 880b5abb14..b5ffcd32e6 100644 --- a/intersight/model/kubernetes_proxy_config.py +++ b/intersight/model/kubernetes_proxy_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/kubernetes_proxy_config_all_of.py b/intersight/model/kubernetes_proxy_config_all_of.py index d07a732673..405346b1a4 100644 --- a/intersight/model/kubernetes_proxy_config_all_of.py +++ b/intersight/model/kubernetes_proxy_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/kubernetes_service.py b/intersight/model/kubernetes_service.py index 27c6714f48..505fe5e102 100644 --- a/intersight/model/kubernetes_service.py +++ b/intersight/model/kubernetes_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/kubernetes_service_all_of.py b/intersight/model/kubernetes_service_all_of.py index c7a154c162..41f8a8bbad 100644 --- a/intersight/model/kubernetes_service_all_of.py +++ b/intersight/model/kubernetes_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/kubernetes_service_list.py b/intersight/model/kubernetes_service_list.py index d67793147d..1e51683dfc 100644 --- a/intersight/model/kubernetes_service_list.py +++ b/intersight/model/kubernetes_service_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/kubernetes_service_list_all_of.py b/intersight/model/kubernetes_service_list_all_of.py index fcf192b2cc..bd9d66237e 100644 --- a/intersight/model/kubernetes_service_list_all_of.py +++ b/intersight/model/kubernetes_service_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/kubernetes_service_response.py b/intersight/model/kubernetes_service_response.py index f884e1d189..d883699fe9 100644 --- a/intersight/model/kubernetes_service_response.py +++ b/intersight/model/kubernetes_service_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/kubernetes_service_status.py b/intersight/model/kubernetes_service_status.py index 91cb7cba2e..9b78c6dbe0 100644 --- a/intersight/model/kubernetes_service_status.py +++ b/intersight/model/kubernetes_service_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/kubernetes_service_status_all_of.py b/intersight/model/kubernetes_service_status_all_of.py index d303bc2050..06392cfb3a 100644 --- a/intersight/model/kubernetes_service_status_all_of.py +++ b/intersight/model/kubernetes_service_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/kubernetes_stateful_set.py b/intersight/model/kubernetes_stateful_set.py index d6ae7ba5f3..edaa53c19a 100644 --- a/intersight/model/kubernetes_stateful_set.py +++ b/intersight/model/kubernetes_stateful_set.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_stateful_set_all_of.py b/intersight/model/kubernetes_stateful_set_all_of.py index f3d1578f03..59126b48e6 100644 --- a/intersight/model/kubernetes_stateful_set_all_of.py +++ b/intersight/model/kubernetes_stateful_set_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_stateful_set_list.py b/intersight/model/kubernetes_stateful_set_list.py index 7d64ddfa76..87eb9b4225 100644 --- a/intersight/model/kubernetes_stateful_set_list.py +++ b/intersight/model/kubernetes_stateful_set_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/kubernetes_stateful_set_list_all_of.py b/intersight/model/kubernetes_stateful_set_list_all_of.py index 165f1f495d..3eb2484aec 100644 --- a/intersight/model/kubernetes_stateful_set_list_all_of.py +++ b/intersight/model/kubernetes_stateful_set_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/kubernetes_stateful_set_response.py b/intersight/model/kubernetes_stateful_set_response.py index 9acc6ff15d..b023c31df7 100644 --- a/intersight/model/kubernetes_stateful_set_response.py +++ b/intersight/model/kubernetes_stateful_set_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/kubernetes_stateful_set_status.py b/intersight/model/kubernetes_stateful_set_status.py index 9b15085cc0..c5fc5a455e 100644 --- a/intersight/model/kubernetes_stateful_set_status.py +++ b/intersight/model/kubernetes_stateful_set_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/kubernetes_stateful_set_status_all_of.py b/intersight/model/kubernetes_stateful_set_status_all_of.py index 8e3204d6ab..4a9e3c667f 100644 --- a/intersight/model/kubernetes_stateful_set_status_all_of.py +++ b/intersight/model/kubernetes_stateful_set_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/kubernetes_sys_config_policy.py b/intersight/model/kubernetes_sys_config_policy.py index daba776508..f68921f8a6 100644 --- a/intersight/model/kubernetes_sys_config_policy.py +++ b/intersight/model/kubernetes_sys_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/kubernetes_sys_config_policy_all_of.py b/intersight/model/kubernetes_sys_config_policy_all_of.py index bd126e8d9c..fdc692fb85 100644 --- a/intersight/model/kubernetes_sys_config_policy_all_of.py +++ b/intersight/model/kubernetes_sys_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/kubernetes_sys_config_policy_list.py b/intersight/model/kubernetes_sys_config_policy_list.py index 08a34d1e5d..2f7496e792 100644 --- a/intersight/model/kubernetes_sys_config_policy_list.py +++ b/intersight/model/kubernetes_sys_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/kubernetes_sys_config_policy_list_all_of.py b/intersight/model/kubernetes_sys_config_policy_list_all_of.py index ebd26ed57d..132dbf8a5b 100644 --- a/intersight/model/kubernetes_sys_config_policy_list_all_of.py +++ b/intersight/model/kubernetes_sys_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/kubernetes_sys_config_policy_relationship.py b/intersight/model/kubernetes_sys_config_policy_relationship.py index 688ea9545b..aff2511623 100644 --- a/intersight/model/kubernetes_sys_config_policy_relationship.py +++ b/intersight/model/kubernetes_sys_config_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 """ @@ -329,6 +329,8 @@ class KubernetesSysConfigPolicyRelationship(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", @@ -345,6 +347,7 @@ class KubernetesSysConfigPolicyRelationship(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", @@ -393,9 +396,12 @@ class KubernetesSysConfigPolicyRelationship(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", @@ -459,10 +465,6 @@ class KubernetesSysConfigPolicyRelationship(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", @@ -471,6 +473,7 @@ class KubernetesSysConfigPolicyRelationship(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", @@ -719,6 +722,7 @@ class KubernetesSysConfigPolicyRelationship(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", @@ -888,6 +892,11 @@ class KubernetesSysConfigPolicyRelationship(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", @@ -1003,6 +1012,7 @@ class KubernetesSysConfigPolicyRelationship(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", @@ -1034,6 +1044,7 @@ class KubernetesSysConfigPolicyRelationship(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", @@ -1066,12 +1077,14 @@ class KubernetesSysConfigPolicyRelationship(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/kubernetes_sys_config_policy_response.py b/intersight/model/kubernetes_sys_config_policy_response.py index 6bb221a07c..7b7936e946 100644 --- a/intersight/model/kubernetes_sys_config_policy_response.py +++ b/intersight/model/kubernetes_sys_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/kubernetes_taint.py b/intersight/model/kubernetes_taint.py index e4f62bfb5c..1efbe03d3d 100644 --- a/intersight/model/kubernetes_taint.py +++ b/intersight/model/kubernetes_taint.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_taint_all_of.py b/intersight/model/kubernetes_taint_all_of.py index 3cdde2c457..329cf03624 100644 --- a/intersight/model/kubernetes_taint_all_of.py +++ b/intersight/model/kubernetes_taint_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_trusted_registries_policy.py b/intersight/model/kubernetes_trusted_registries_policy.py index b06c35e4be..eb35b6d7bf 100644 --- a/intersight/model/kubernetes_trusted_registries_policy.py +++ b/intersight/model/kubernetes_trusted_registries_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/kubernetes_trusted_registries_policy_all_of.py b/intersight/model/kubernetes_trusted_registries_policy_all_of.py index ef2744a8c1..12bda664e8 100644 --- a/intersight/model/kubernetes_trusted_registries_policy_all_of.py +++ b/intersight/model/kubernetes_trusted_registries_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/kubernetes_trusted_registries_policy_list.py b/intersight/model/kubernetes_trusted_registries_policy_list.py index f8c743ef25..f853769053 100644 --- a/intersight/model/kubernetes_trusted_registries_policy_list.py +++ b/intersight/model/kubernetes_trusted_registries_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/kubernetes_trusted_registries_policy_list_all_of.py b/intersight/model/kubernetes_trusted_registries_policy_list_all_of.py index 998dd419a4..1af2b11cd1 100644 --- a/intersight/model/kubernetes_trusted_registries_policy_list_all_of.py +++ b/intersight/model/kubernetes_trusted_registries_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/kubernetes_trusted_registries_policy_relationship.py b/intersight/model/kubernetes_trusted_registries_policy_relationship.py index c1d947b677..f23f66cb0c 100644 --- a/intersight/model/kubernetes_trusted_registries_policy_relationship.py +++ b/intersight/model/kubernetes_trusted_registries_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 KubernetesTrustedRegistriesPolicyRelationship(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 KubernetesTrustedRegistriesPolicyRelationship(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 KubernetesTrustedRegistriesPolicyRelationship(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 KubernetesTrustedRegistriesPolicyRelationship(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 KubernetesTrustedRegistriesPolicyRelationship(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 KubernetesTrustedRegistriesPolicyRelationship(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 KubernetesTrustedRegistriesPolicyRelationship(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 KubernetesTrustedRegistriesPolicyRelationship(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 KubernetesTrustedRegistriesPolicyRelationship(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 KubernetesTrustedRegistriesPolicyRelationship(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/kubernetes_trusted_registries_policy_response.py b/intersight/model/kubernetes_trusted_registries_policy_response.py index 83727bfbbe..554d0b0896 100644 --- a/intersight/model/kubernetes_trusted_registries_policy_response.py +++ b/intersight/model/kubernetes_trusted_registries_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/kubernetes_version.py b/intersight/model/kubernetes_version.py index 74d3f95fa2..45488f0124 100644 --- a/intersight/model/kubernetes_version.py +++ b/intersight/model/kubernetes_version.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_version_all_of.py b/intersight/model/kubernetes_version_all_of.py index c7229fc2fd..0ebf9a83d1 100644 --- a/intersight/model/kubernetes_version_all_of.py +++ b/intersight/model/kubernetes_version_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_version_list.py b/intersight/model/kubernetes_version_list.py index 5fa60ac601..fceb49b5f1 100644 --- a/intersight/model/kubernetes_version_list.py +++ b/intersight/model/kubernetes_version_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/kubernetes_version_list_all_of.py b/intersight/model/kubernetes_version_list_all_of.py index c53b8b0cb5..eece3878b1 100644 --- a/intersight/model/kubernetes_version_list_all_of.py +++ b/intersight/model/kubernetes_version_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/kubernetes_version_policy.py b/intersight/model/kubernetes_version_policy.py index 786d294665..b3f26282ae 100644 --- a/intersight/model/kubernetes_version_policy.py +++ b/intersight/model/kubernetes_version_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/kubernetes_version_policy_all_of.py b/intersight/model/kubernetes_version_policy_all_of.py index 628640a079..0b51640e6f 100644 --- a/intersight/model/kubernetes_version_policy_all_of.py +++ b/intersight/model/kubernetes_version_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/kubernetes_version_policy_list.py b/intersight/model/kubernetes_version_policy_list.py index 3d3653f49a..bcc391c275 100644 --- a/intersight/model/kubernetes_version_policy_list.py +++ b/intersight/model/kubernetes_version_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/kubernetes_version_policy_list_all_of.py b/intersight/model/kubernetes_version_policy_list_all_of.py index 5217e94b5c..d0f440de16 100644 --- a/intersight/model/kubernetes_version_policy_list_all_of.py +++ b/intersight/model/kubernetes_version_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/kubernetes_version_policy_relationship.py b/intersight/model/kubernetes_version_policy_relationship.py index 6153821389..452e8ca312 100644 --- a/intersight/model/kubernetes_version_policy_relationship.py +++ b/intersight/model/kubernetes_version_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 KubernetesVersionPolicyRelationship(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 KubernetesVersionPolicyRelationship(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 KubernetesVersionPolicyRelationship(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 KubernetesVersionPolicyRelationship(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 KubernetesVersionPolicyRelationship(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 KubernetesVersionPolicyRelationship(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 KubernetesVersionPolicyRelationship(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 KubernetesVersionPolicyRelationship(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 KubernetesVersionPolicyRelationship(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 KubernetesVersionPolicyRelationship(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/kubernetes_version_policy_response.py b/intersight/model/kubernetes_version_policy_response.py index 4894ca6b1f..10d820712e 100644 --- a/intersight/model/kubernetes_version_policy_response.py +++ b/intersight/model/kubernetes_version_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/kubernetes_version_relationship.py b/intersight/model/kubernetes_version_relationship.py index 6173e7785f..97fde24db6 100644 --- a/intersight/model/kubernetes_version_relationship.py +++ b/intersight/model/kubernetes_version_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 KubernetesVersionRelationship(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 KubernetesVersionRelationship(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 KubernetesVersionRelationship(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 KubernetesVersionRelationship(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 KubernetesVersionRelationship(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 KubernetesVersionRelationship(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 KubernetesVersionRelationship(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 KubernetesVersionRelationship(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 KubernetesVersionRelationship(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 KubernetesVersionRelationship(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/kubernetes_version_response.py b/intersight/model/kubernetes_version_response.py index 4bf565a3fc..36317dc898 100644 --- a/intersight/model/kubernetes_version_response.py +++ b/intersight/model/kubernetes_version_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/kubernetes_virtual_machine_infra_config_policy.py b/intersight/model/kubernetes_virtual_machine_infra_config_policy.py index f4533e1569..07c16cb61a 100644 --- a/intersight/model/kubernetes_virtual_machine_infra_config_policy.py +++ b/intersight/model/kubernetes_virtual_machine_infra_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/kubernetes_virtual_machine_infra_config_policy_all_of.py b/intersight/model/kubernetes_virtual_machine_infra_config_policy_all_of.py index 8c7eb5c109..ad53ff477e 100644 --- a/intersight/model/kubernetes_virtual_machine_infra_config_policy_all_of.py +++ b/intersight/model/kubernetes_virtual_machine_infra_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/kubernetes_virtual_machine_infra_config_policy_list.py b/intersight/model/kubernetes_virtual_machine_infra_config_policy_list.py index 7392d97757..7aea171284 100644 --- a/intersight/model/kubernetes_virtual_machine_infra_config_policy_list.py +++ b/intersight/model/kubernetes_virtual_machine_infra_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/kubernetes_virtual_machine_infra_config_policy_list_all_of.py b/intersight/model/kubernetes_virtual_machine_infra_config_policy_list_all_of.py index b916dcacf6..ba2d0d3f6e 100644 --- a/intersight/model/kubernetes_virtual_machine_infra_config_policy_list_all_of.py +++ b/intersight/model/kubernetes_virtual_machine_infra_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/kubernetes_virtual_machine_infra_config_policy_relationship.py b/intersight/model/kubernetes_virtual_machine_infra_config_policy_relationship.py index 5c504c129b..3bf6c0f62f 100644 --- a/intersight/model/kubernetes_virtual_machine_infra_config_policy_relationship.py +++ b/intersight/model/kubernetes_virtual_machine_infra_config_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 """ @@ -80,6 +80,8 @@ class KubernetesVirtualMachineInfraConfigPolicyRelationship(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 KubernetesVirtualMachineInfraConfigPolicyRelationship(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 KubernetesVirtualMachineInfraConfigPolicyRelationship(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 KubernetesVirtualMachineInfraConfigPolicyRelationship(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 KubernetesVirtualMachineInfraConfigPolicyRelationship(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 KubernetesVirtualMachineInfraConfigPolicyRelationship(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 KubernetesVirtualMachineInfraConfigPolicyRelationship(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 KubernetesVirtualMachineInfraConfigPolicyRelationship(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 KubernetesVirtualMachineInfraConfigPolicyRelationship(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 KubernetesVirtualMachineInfraConfigPolicyRelationship(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/kubernetes_virtual_machine_infra_config_policy_response.py b/intersight/model/kubernetes_virtual_machine_infra_config_policy_response.py index c707397256..45524447ce 100644 --- a/intersight/model/kubernetes_virtual_machine_infra_config_policy_response.py +++ b/intersight/model/kubernetes_virtual_machine_infra_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/kubernetes_virtual_machine_infrastructure_provider.py b/intersight/model/kubernetes_virtual_machine_infrastructure_provider.py index b3b1f04bbc..28c44d7222 100644 --- a/intersight/model/kubernetes_virtual_machine_infrastructure_provider.py +++ b/intersight/model/kubernetes_virtual_machine_infrastructure_provider.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_virtual_machine_infrastructure_provider_all_of.py b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_all_of.py index 4bfddcd520..5b5be49e97 100644 --- a/intersight/model/kubernetes_virtual_machine_infrastructure_provider_all_of.py +++ b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kubernetes_virtual_machine_infrastructure_provider_list.py b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_list.py index da6d28319b..3a664c6309 100644 --- a/intersight/model/kubernetes_virtual_machine_infrastructure_provider_list.py +++ b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_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/kubernetes_virtual_machine_infrastructure_provider_list_all_of.py b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_list_all_of.py index 1613dbaced..8fd39ef2d6 100644 --- a/intersight/model/kubernetes_virtual_machine_infrastructure_provider_list_all_of.py +++ b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_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/kubernetes_virtual_machine_infrastructure_provider_relationship.py b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_relationship.py index 1a784b1af8..b90b12fa85 100644 --- a/intersight/model/kubernetes_virtual_machine_infrastructure_provider_relationship.py +++ b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_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 KubernetesVirtualMachineInfrastructureProviderRelationship(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 KubernetesVirtualMachineInfrastructureProviderRelationship(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 KubernetesVirtualMachineInfrastructureProviderRelationship(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 KubernetesVirtualMachineInfrastructureProviderRelationship(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 KubernetesVirtualMachineInfrastructureProviderRelationship(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 KubernetesVirtualMachineInfrastructureProviderRelationship(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 KubernetesVirtualMachineInfrastructureProviderRelationship(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 KubernetesVirtualMachineInfrastructureProviderRelationship(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 KubernetesVirtualMachineInfrastructureProviderRelationship(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 KubernetesVirtualMachineInfrastructureProviderRelationship(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/kubernetes_virtual_machine_infrastructure_provider_response.py b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_response.py index 63188d6850..0826385fb0 100644 --- a/intersight/model/kubernetes_virtual_machine_infrastructure_provider_response.py +++ b/intersight/model/kubernetes_virtual_machine_infrastructure_provider_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/kubernetes_virtual_machine_instance_type.py b/intersight/model/kubernetes_virtual_machine_instance_type.py index a0da8ad1bb..5479d3d5d0 100644 --- a/intersight/model/kubernetes_virtual_machine_instance_type.py +++ b/intersight/model/kubernetes_virtual_machine_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/kubernetes_virtual_machine_instance_type_all_of.py b/intersight/model/kubernetes_virtual_machine_instance_type_all_of.py index a7c20600ca..e0c04bd1b7 100644 --- a/intersight/model/kubernetes_virtual_machine_instance_type_all_of.py +++ b/intersight/model/kubernetes_virtual_machine_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/kubernetes_virtual_machine_instance_type_list.py b/intersight/model/kubernetes_virtual_machine_instance_type_list.py index 6366efff11..7fd439830d 100644 --- a/intersight/model/kubernetes_virtual_machine_instance_type_list.py +++ b/intersight/model/kubernetes_virtual_machine_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/kubernetes_virtual_machine_instance_type_list_all_of.py b/intersight/model/kubernetes_virtual_machine_instance_type_list_all_of.py index 2322e14f55..8a91ccb119 100644 --- a/intersight/model/kubernetes_virtual_machine_instance_type_list_all_of.py +++ b/intersight/model/kubernetes_virtual_machine_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/kubernetes_virtual_machine_instance_type_relationship.py b/intersight/model/kubernetes_virtual_machine_instance_type_relationship.py index c42e6c6c2f..bd662a9ec3 100644 --- a/intersight/model/kubernetes_virtual_machine_instance_type_relationship.py +++ b/intersight/model/kubernetes_virtual_machine_instance_type_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 KubernetesVirtualMachineInstanceTypeRelationship(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 KubernetesVirtualMachineInstanceTypeRelationship(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 KubernetesVirtualMachineInstanceTypeRelationship(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 KubernetesVirtualMachineInstanceTypeRelationship(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 KubernetesVirtualMachineInstanceTypeRelationship(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 KubernetesVirtualMachineInstanceTypeRelationship(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 KubernetesVirtualMachineInstanceTypeRelationship(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 KubernetesVirtualMachineInstanceTypeRelationship(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 KubernetesVirtualMachineInstanceTypeRelationship(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 KubernetesVirtualMachineInstanceTypeRelationship(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/kubernetes_virtual_machine_instance_type_response.py b/intersight/model/kubernetes_virtual_machine_instance_type_response.py index 477a744280..34027bc56b 100644 --- a/intersight/model/kubernetes_virtual_machine_instance_type_response.py +++ b/intersight/model/kubernetes_virtual_machine_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/kubernetes_virtual_machine_node_profile.py b/intersight/model/kubernetes_virtual_machine_node_profile.py index be63fca09a..bcd7a760e3 100644 --- a/intersight/model/kubernetes_virtual_machine_node_profile.py +++ b/intersight/model/kubernetes_virtual_machine_node_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/kubernetes_virtual_machine_node_profile_all_of.py b/intersight/model/kubernetes_virtual_machine_node_profile_all_of.py index a4ce3549fa..510a74b8c6 100644 --- a/intersight/model/kubernetes_virtual_machine_node_profile_all_of.py +++ b/intersight/model/kubernetes_virtual_machine_node_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/kubernetes_virtual_machine_node_profile_list.py b/intersight/model/kubernetes_virtual_machine_node_profile_list.py index be009c2b4d..2b47255895 100644 --- a/intersight/model/kubernetes_virtual_machine_node_profile_list.py +++ b/intersight/model/kubernetes_virtual_machine_node_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/kubernetes_virtual_machine_node_profile_list_all_of.py b/intersight/model/kubernetes_virtual_machine_node_profile_list_all_of.py index 3885bc60e4..7500975837 100644 --- a/intersight/model/kubernetes_virtual_machine_node_profile_list_all_of.py +++ b/intersight/model/kubernetes_virtual_machine_node_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/kubernetes_virtual_machine_node_profile_response.py b/intersight/model/kubernetes_virtual_machine_node_profile_response.py index 14e860fce3..bd8cd8b826 100644 --- a/intersight/model/kubernetes_virtual_machine_node_profile_response.py +++ b/intersight/model/kubernetes_virtual_machine_node_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/kvm_policy.py b/intersight/model/kvm_policy.py index fa887722f7..2ff6bebec8 100644 --- a/intersight/model/kvm_policy.py +++ b/intersight/model/kvm_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 """ @@ -237,7 +237,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) enable_local_server_video (bool): If enabled, displays KVM session on any monitor attached to the server.. [optional] if omitted the server will use the default value of True # noqa: E501 - enable_video_encryption (bool): If enabled, encrypts all video information sent through KVM.. [optional] if omitted the server will use the default value of True # noqa: E501 + enable_video_encryption (bool): If enabled, encrypts all video information sent through KVM. Please note that this is no longer applicable for servers running versions 4.2 and above.. [optional] if omitted the server will use the default value of True # noqa: E501 enabled (bool): State of the vKVM service on the endpoint.. [optional] if omitted the server will use the default value of True # noqa: E501 maximum_sessions (int): The maximum number of concurrent KVM sessions allowed.. [optional] if omitted the server will use the default value of 4 # noqa: E501 remote_port (int): The port used for KVM communication.. [optional] if omitted the server will use the default value of 2068 # noqa: E501 diff --git a/intersight/model/kvm_policy_all_of.py b/intersight/model/kvm_policy_all_of.py index 57ba11d562..5bda699650 100644 --- a/intersight/model/kvm_policy_all_of.py +++ b/intersight/model/kvm_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 """ @@ -173,7 +173,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) enable_local_server_video (bool): If enabled, displays KVM session on any monitor attached to the server.. [optional] if omitted the server will use the default value of True # noqa: E501 - enable_video_encryption (bool): If enabled, encrypts all video information sent through KVM.. [optional] if omitted the server will use the default value of True # noqa: E501 + enable_video_encryption (bool): If enabled, encrypts all video information sent through KVM. Please note that this is no longer applicable for servers running versions 4.2 and above.. [optional] if omitted the server will use the default value of True # noqa: E501 enabled (bool): State of the vKVM service on the endpoint.. [optional] if omitted the server will use the default value of True # noqa: E501 maximum_sessions (int): The maximum number of concurrent KVM sessions allowed.. [optional] if omitted the server will use the default value of 4 # noqa: E501 remote_port (int): The port used for KVM communication.. [optional] if omitted the server will use the default value of 2068 # noqa: E501 diff --git a/intersight/model/kvm_policy_list.py b/intersight/model/kvm_policy_list.py index 4fd5f16a33..4aa889f5f0 100644 --- a/intersight/model/kvm_policy_list.py +++ b/intersight/model/kvm_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/kvm_policy_list_all_of.py b/intersight/model/kvm_policy_list_all_of.py index 75e5ca0b2b..edff46fd5e 100644 --- a/intersight/model/kvm_policy_list_all_of.py +++ b/intersight/model/kvm_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/kvm_policy_response.py b/intersight/model/kvm_policy_response.py index 3a0a20cbc9..8bb268be3e 100644 --- a/intersight/model/kvm_policy_response.py +++ b/intersight/model/kvm_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/kvm_session.py b/intersight/model/kvm_session.py index faf96d3106..e6ed6c7739 100644 --- a/intersight/model/kvm_session.py +++ b/intersight/model/kvm_session.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -118,6 +118,7 @@ def openapi_types(): return { 'class_id': (str,), # noqa: E501 'object_type': (str,), # noqa: E501 + 'kvm_launch_url_path': (str,), # noqa: E501 'one_time_password': (str,), # noqa: E501 'sso_supported': (bool,), # noqa: E501 'username': (str,), # noqa: E501 @@ -159,6 +160,7 @@ def discriminator(): attribute_map = { 'class_id': 'ClassId', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 + 'kvm_launch_url_path': 'KvmLaunchUrlPath', # noqa: E501 'one_time_password': 'OneTimePassword', # noqa: E501 'sso_supported': 'SsoSupported', # noqa: E501 'username': 'Username', # noqa: E501 @@ -240,6 +242,7 @@ 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,) + kvm_launch_url_path (str): One time URL that is used to launch the KVM console.. [optional] # noqa: E501 one_time_password (str): Temporary one-time password for vKVM access.. [optional] # noqa: E501 sso_supported (bool): Indicates if vKVM SSO is supported on the server.. [optional] # noqa: E501 username (str): Username used for vKVM access.. [optional] # noqa: E501 diff --git a/intersight/model/kvm_session_all_of.py b/intersight/model/kvm_session_all_of.py index 71084c03d6..4adb0a193d 100644 --- a/intersight/model/kvm_session_all_of.py +++ b/intersight/model/kvm_session_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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,7 @@ def openapi_types(): return { 'class_id': (str,), # noqa: E501 'object_type': (str,), # noqa: E501 + 'kvm_launch_url_path': (str,), # noqa: E501 'one_time_password': (str,), # noqa: E501 'sso_supported': (bool,), # noqa: E501 'username': (str,), # noqa: E501 @@ -106,6 +107,7 @@ def discriminator(): attribute_map = { 'class_id': 'ClassId', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 + 'kvm_launch_url_path': 'KvmLaunchUrlPath', # noqa: E501 'one_time_password': 'OneTimePassword', # noqa: E501 'sso_supported': 'SsoSupported', # noqa: E501 'username': 'Username', # noqa: E501 @@ -164,6 +166,7 @@ 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,) + kvm_launch_url_path (str): One time URL that is used to launch the KVM console.. [optional] # noqa: E501 one_time_password (str): Temporary one-time password for vKVM access.. [optional] # noqa: E501 sso_supported (bool): Indicates if vKVM SSO is supported on the server.. [optional] # noqa: E501 username (str): Username used for vKVM access.. [optional] # noqa: E501 diff --git a/intersight/model/kvm_session_list.py b/intersight/model/kvm_session_list.py index 749541e72f..00fd27f4d2 100644 --- a/intersight/model/kvm_session_list.py +++ b/intersight/model/kvm_session_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/kvm_session_list_all_of.py b/intersight/model/kvm_session_list_all_of.py index 4264c7c126..88c7c781c9 100644 --- a/intersight/model/kvm_session_list_all_of.py +++ b/intersight/model/kvm_session_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/kvm_session_relationship.py b/intersight/model/kvm_session_relationship.py index 6c5e0f2a47..a1f8190da0 100644 --- a/intersight/model/kvm_session_relationship.py +++ b/intersight/model/kvm_session_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 KvmSessionRelationship(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 KvmSessionRelationship(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 KvmSessionRelationship(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 KvmSessionRelationship(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 KvmSessionRelationship(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 KvmSessionRelationship(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 KvmSessionRelationship(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 KvmSessionRelationship(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 KvmSessionRelationship(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 KvmSessionRelationship(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", }, } @@ -884,6 +897,7 @@ def openapi_types(): 'session': (SessionAbstractSessionRelationship,), # noqa: E501 'target': (MoBaseMoRelationship,), # noqa: E501 'user': (IamUserRelationship,), # noqa: E501 + 'kvm_launch_url_path': (str,), # noqa: E501 'one_time_password': (str,), # noqa: E501 'sso_supported': (bool,), # noqa: E501 'username': (str,), # noqa: E501 @@ -930,6 +944,7 @@ def discriminator(): 'session': 'Session', # noqa: E501 'target': 'Target', # noqa: E501 'user': 'User', # noqa: E501 + 'kvm_launch_url_path': 'KvmLaunchUrlPath', # noqa: E501 'one_time_password': 'OneTimePassword', # noqa: E501 'sso_supported': 'SsoSupported', # noqa: E501 'username': 'Username', # noqa: E501 @@ -1013,6 +1028,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 session (SessionAbstractSessionRelationship): [optional] # noqa: E501 target (MoBaseMoRelationship): [optional] # noqa: E501 user (IamUserRelationship): [optional] # noqa: E501 + kvm_launch_url_path (str): One time URL that is used to launch the KVM console.. [optional] # noqa: E501 one_time_password (str): Temporary one-time password for vKVM access.. [optional] # noqa: E501 sso_supported (bool): Indicates if vKVM SSO is supported on the server.. [optional] # noqa: E501 username (str): Username used for vKVM access.. [optional] # noqa: E501 diff --git a/intersight/model/kvm_session_response.py b/intersight/model/kvm_session_response.py index e88e5494da..86b3fd57ec 100644 --- a/intersight/model/kvm_session_response.py +++ b/intersight/model/kvm_session_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/kvm_tunnel.py b/intersight/model/kvm_tunnel.py index dfc4f70280..39ebe7d46e 100644 --- a/intersight/model/kvm_tunnel.py +++ b/intersight/model/kvm_tunnel.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kvm_tunnel_all_of.py b/intersight/model/kvm_tunnel_all_of.py index fa440dcd69..05c753ccdc 100644 --- a/intersight/model/kvm_tunnel_all_of.py +++ b/intersight/model/kvm_tunnel_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kvm_tunnel_list.py b/intersight/model/kvm_tunnel_list.py index f176f1b144..ffc5440b1e 100644 --- a/intersight/model/kvm_tunnel_list.py +++ b/intersight/model/kvm_tunnel_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/kvm_tunnel_list_all_of.py b/intersight/model/kvm_tunnel_list_all_of.py index 6699c4ff91..568c037017 100644 --- a/intersight/model/kvm_tunnel_list_all_of.py +++ b/intersight/model/kvm_tunnel_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/kvm_tunnel_relationship.py b/intersight/model/kvm_tunnel_relationship.py index 33628b15d7..c91a427cbd 100644 --- a/intersight/model/kvm_tunnel_relationship.py +++ b/intersight/model/kvm_tunnel_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 KvmTunnelRelationship(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 KvmTunnelRelationship(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 KvmTunnelRelationship(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 KvmTunnelRelationship(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 KvmTunnelRelationship(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 KvmTunnelRelationship(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 KvmTunnelRelationship(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 KvmTunnelRelationship(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 KvmTunnelRelationship(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 KvmTunnelRelationship(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/kvm_tunnel_response.py b/intersight/model/kvm_tunnel_response.py index 69a5bee5a1..773d55671a 100644 --- a/intersight/model/kvm_tunnel_response.py +++ b/intersight/model/kvm_tunnel_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/kvm_vm_console.py b/intersight/model/kvm_vm_console.py index e3ae048746..77a96c35f7 100644 --- a/intersight/model/kvm_vm_console.py +++ b/intersight/model/kvm_vm_console.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kvm_vm_console_all_of.py b/intersight/model/kvm_vm_console_all_of.py index ce5c0b2d8b..2305e9d814 100644 --- a/intersight/model/kvm_vm_console_all_of.py +++ b/intersight/model/kvm_vm_console_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/kvm_vm_console_list.py b/intersight/model/kvm_vm_console_list.py index 37732ed1f4..03a9406921 100644 --- a/intersight/model/kvm_vm_console_list.py +++ b/intersight/model/kvm_vm_console_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/kvm_vm_console_list_all_of.py b/intersight/model/kvm_vm_console_list_all_of.py index fc95c5af9d..986a215773 100644 --- a/intersight/model/kvm_vm_console_list_all_of.py +++ b/intersight/model/kvm_vm_console_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/kvm_vm_console_response.py b/intersight/model/kvm_vm_console_response.py index cab9d3732e..1d9bc24bd2 100644 --- a/intersight/model/kvm_vm_console_response.py +++ b/intersight/model/kvm_vm_console_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/license_account_license_data.py b/intersight/model/license_account_license_data.py index c1597ac33a..3b523a5c86 100644 --- a/intersight/model/license_account_license_data.py +++ b/intersight/model/license_account_license_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/license_account_license_data_all_of.py b/intersight/model/license_account_license_data_all_of.py index c7094ee6ca..0aff7df335 100644 --- a/intersight/model/license_account_license_data_all_of.py +++ b/intersight/model/license_account_license_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/license_account_license_data_list.py b/intersight/model/license_account_license_data_list.py index 3a44d77626..7ffe6132e3 100644 --- a/intersight/model/license_account_license_data_list.py +++ b/intersight/model/license_account_license_data_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/license_account_license_data_list_all_of.py b/intersight/model/license_account_license_data_list_all_of.py index 6825e3a3ab..a20938da7f 100644 --- a/intersight/model/license_account_license_data_list_all_of.py +++ b/intersight/model/license_account_license_data_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/license_account_license_data_relationship.py b/intersight/model/license_account_license_data_relationship.py index b5cdf867e5..bbab34982d 100644 --- a/intersight/model/license_account_license_data_relationship.py +++ b/intersight/model/license_account_license_data_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 LicenseAccountLicenseDataRelationship(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 LicenseAccountLicenseDataRelationship(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 LicenseAccountLicenseDataRelationship(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 LicenseAccountLicenseDataRelationship(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 LicenseAccountLicenseDataRelationship(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 LicenseAccountLicenseDataRelationship(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 LicenseAccountLicenseDataRelationship(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 LicenseAccountLicenseDataRelationship(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 LicenseAccountLicenseDataRelationship(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 LicenseAccountLicenseDataRelationship(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/license_account_license_data_response.py b/intersight/model/license_account_license_data_response.py index 50fb658943..77eaf993aa 100644 --- a/intersight/model/license_account_license_data_response.py +++ b/intersight/model/license_account_license_data_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/license_customer_op.py b/intersight/model/license_customer_op.py index aa2241409b..e8174260eb 100644 --- a/intersight/model/license_customer_op.py +++ b/intersight/model/license_customer_op.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_customer_op_all_of.py b/intersight/model/license_customer_op_all_of.py index 30065739a7..998b8a67d2 100644 --- a/intersight/model/license_customer_op_all_of.py +++ b/intersight/model/license_customer_op_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_customer_op_list.py b/intersight/model/license_customer_op_list.py index 64d029bcd0..27858af6a0 100644 --- a/intersight/model/license_customer_op_list.py +++ b/intersight/model/license_customer_op_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/license_customer_op_list_all_of.py b/intersight/model/license_customer_op_list_all_of.py index cefc20182a..51d41bb46f 100644 --- a/intersight/model/license_customer_op_list_all_of.py +++ b/intersight/model/license_customer_op_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/license_customer_op_relationship.py b/intersight/model/license_customer_op_relationship.py index 42bb928f1b..bb4d59fffe 100644 --- a/intersight/model/license_customer_op_relationship.py +++ b/intersight/model/license_customer_op_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 LicenseCustomerOpRelationship(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 LicenseCustomerOpRelationship(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 LicenseCustomerOpRelationship(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 LicenseCustomerOpRelationship(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 LicenseCustomerOpRelationship(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 LicenseCustomerOpRelationship(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 LicenseCustomerOpRelationship(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 LicenseCustomerOpRelationship(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 LicenseCustomerOpRelationship(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 LicenseCustomerOpRelationship(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/license_customer_op_response.py b/intersight/model/license_customer_op_response.py index 6f879c93bb..4fac9dbc3a 100644 --- a/intersight/model/license_customer_op_response.py +++ b/intersight/model/license_customer_op_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/license_iwo_customer_op.py b/intersight/model/license_iwo_customer_op.py index ece7b335c4..bec31d4a48 100644 --- a/intersight/model/license_iwo_customer_op.py +++ b/intersight/model/license_iwo_customer_op.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_iwo_customer_op_all_of.py b/intersight/model/license_iwo_customer_op_all_of.py index ddc9b72a63..65c2522efa 100644 --- a/intersight/model/license_iwo_customer_op_all_of.py +++ b/intersight/model/license_iwo_customer_op_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_iwo_customer_op_list.py b/intersight/model/license_iwo_customer_op_list.py index 049f7ba046..026f5ce17c 100644 --- a/intersight/model/license_iwo_customer_op_list.py +++ b/intersight/model/license_iwo_customer_op_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/license_iwo_customer_op_list_all_of.py b/intersight/model/license_iwo_customer_op_list_all_of.py index e81c21e4eb..80c3b15388 100644 --- a/intersight/model/license_iwo_customer_op_list_all_of.py +++ b/intersight/model/license_iwo_customer_op_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/license_iwo_customer_op_relationship.py b/intersight/model/license_iwo_customer_op_relationship.py index aa98d3ca61..ad20206d23 100644 --- a/intersight/model/license_iwo_customer_op_relationship.py +++ b/intersight/model/license_iwo_customer_op_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 LicenseIwoCustomerOpRelationship(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 LicenseIwoCustomerOpRelationship(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 LicenseIwoCustomerOpRelationship(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 LicenseIwoCustomerOpRelationship(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 LicenseIwoCustomerOpRelationship(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 LicenseIwoCustomerOpRelationship(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 LicenseIwoCustomerOpRelationship(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 LicenseIwoCustomerOpRelationship(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 LicenseIwoCustomerOpRelationship(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 LicenseIwoCustomerOpRelationship(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/license_iwo_customer_op_response.py b/intersight/model/license_iwo_customer_op_response.py index a7966e24c3..5f345fca28 100644 --- a/intersight/model/license_iwo_customer_op_response.py +++ b/intersight/model/license_iwo_customer_op_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/license_iwo_license_count.py b/intersight/model/license_iwo_license_count.py index 96ae596d7b..1ac8a270dc 100644 --- a/intersight/model/license_iwo_license_count.py +++ b/intersight/model/license_iwo_license_count.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_iwo_license_count_all_of.py b/intersight/model/license_iwo_license_count_all_of.py index fe356389e5..cdcbb787b0 100644 --- a/intersight/model/license_iwo_license_count_all_of.py +++ b/intersight/model/license_iwo_license_count_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_iwo_license_count_list.py b/intersight/model/license_iwo_license_count_list.py index 4f73ced8f3..a7d50f79d0 100644 --- a/intersight/model/license_iwo_license_count_list.py +++ b/intersight/model/license_iwo_license_count_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/license_iwo_license_count_list_all_of.py b/intersight/model/license_iwo_license_count_list_all_of.py index d307636b28..f13fcc830b 100644 --- a/intersight/model/license_iwo_license_count_list_all_of.py +++ b/intersight/model/license_iwo_license_count_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/license_iwo_license_count_relationship.py b/intersight/model/license_iwo_license_count_relationship.py index a7733fa2c7..0bdc8ffaf3 100644 --- a/intersight/model/license_iwo_license_count_relationship.py +++ b/intersight/model/license_iwo_license_count_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 LicenseIwoLicenseCountRelationship(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 LicenseIwoLicenseCountRelationship(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 LicenseIwoLicenseCountRelationship(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 LicenseIwoLicenseCountRelationship(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 LicenseIwoLicenseCountRelationship(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 LicenseIwoLicenseCountRelationship(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 LicenseIwoLicenseCountRelationship(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 LicenseIwoLicenseCountRelationship(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 LicenseIwoLicenseCountRelationship(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 LicenseIwoLicenseCountRelationship(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/license_iwo_license_count_response.py b/intersight/model/license_iwo_license_count_response.py index 9bdfbfddef..613e12163d 100644 --- a/intersight/model/license_iwo_license_count_response.py +++ b/intersight/model/license_iwo_license_count_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/license_license_info.py b/intersight/model/license_license_info.py index c0f06330d2..40df6cc372 100644 --- a/intersight/model/license_license_info.py +++ b/intersight/model/license_license_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/license_license_info_all_of.py b/intersight/model/license_license_info_all_of.py index 19ef16caa5..df3cc4b6f1 100644 --- a/intersight/model/license_license_info_all_of.py +++ b/intersight/model/license_license_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/license_license_info_list.py b/intersight/model/license_license_info_list.py index 46d87f3eb9..822a6bbd7a 100644 --- a/intersight/model/license_license_info_list.py +++ b/intersight/model/license_license_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/license_license_info_list_all_of.py b/intersight/model/license_license_info_list_all_of.py index 6f89253aa7..4bd0e750e2 100644 --- a/intersight/model/license_license_info_list_all_of.py +++ b/intersight/model/license_license_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/license_license_info_relationship.py b/intersight/model/license_license_info_relationship.py index 1d269313ef..a5c47659b1 100644 --- a/intersight/model/license_license_info_relationship.py +++ b/intersight/model/license_license_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 """ @@ -92,6 +92,8 @@ class LicenseLicenseInfoRelationship(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 LicenseLicenseInfoRelationship(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 LicenseLicenseInfoRelationship(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 LicenseLicenseInfoRelationship(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 LicenseLicenseInfoRelationship(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 LicenseLicenseInfoRelationship(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 LicenseLicenseInfoRelationship(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 LicenseLicenseInfoRelationship(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 LicenseLicenseInfoRelationship(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 LicenseLicenseInfoRelationship(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/license_license_info_response.py b/intersight/model/license_license_info_response.py index 1a303ccd4f..2a59847bbf 100644 --- a/intersight/model/license_license_info_response.py +++ b/intersight/model/license_license_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/license_license_reservation_op.py b/intersight/model/license_license_reservation_op.py index d00c591ef4..d336380a05 100644 --- a/intersight/model/license_license_reservation_op.py +++ b/intersight/model/license_license_reservation_op.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_license_reservation_op_all_of.py b/intersight/model/license_license_reservation_op_all_of.py index 2fcc29a340..2609383766 100644 --- a/intersight/model/license_license_reservation_op_all_of.py +++ b/intersight/model/license_license_reservation_op_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_license_reservation_op_list.py b/intersight/model/license_license_reservation_op_list.py index ba87ec7317..45fa886f5b 100644 --- a/intersight/model/license_license_reservation_op_list.py +++ b/intersight/model/license_license_reservation_op_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/license_license_reservation_op_list_all_of.py b/intersight/model/license_license_reservation_op_list_all_of.py index 3ef4ef4512..eb13b50cfa 100644 --- a/intersight/model/license_license_reservation_op_list_all_of.py +++ b/intersight/model/license_license_reservation_op_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/license_license_reservation_op_response.py b/intersight/model/license_license_reservation_op_response.py index 0cdbf957ad..b7f2fc4ad9 100644 --- a/intersight/model/license_license_reservation_op_response.py +++ b/intersight/model/license_license_reservation_op_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/license_smartlicense_token.py b/intersight/model/license_smartlicense_token.py index f68e4ba730..fbdcca7a87 100644 --- a/intersight/model/license_smartlicense_token.py +++ b/intersight/model/license_smartlicense_token.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_smartlicense_token_all_of.py b/intersight/model/license_smartlicense_token_all_of.py index 6b93d951a2..1437d2eccc 100644 --- a/intersight/model/license_smartlicense_token_all_of.py +++ b/intersight/model/license_smartlicense_token_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/license_smartlicense_token_list.py b/intersight/model/license_smartlicense_token_list.py index c1bff7bb1b..f82a4b2a5e 100644 --- a/intersight/model/license_smartlicense_token_list.py +++ b/intersight/model/license_smartlicense_token_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/license_smartlicense_token_list_all_of.py b/intersight/model/license_smartlicense_token_list_all_of.py index 8f6e96c6bc..bb2c68c77d 100644 --- a/intersight/model/license_smartlicense_token_list_all_of.py +++ b/intersight/model/license_smartlicense_token_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/license_smartlicense_token_relationship.py b/intersight/model/license_smartlicense_token_relationship.py index ccb43f5efd..b0387d3281 100644 --- a/intersight/model/license_smartlicense_token_relationship.py +++ b/intersight/model/license_smartlicense_token_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 LicenseSmartlicenseTokenRelationship(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 LicenseSmartlicenseTokenRelationship(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 LicenseSmartlicenseTokenRelationship(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 LicenseSmartlicenseTokenRelationship(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 LicenseSmartlicenseTokenRelationship(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 LicenseSmartlicenseTokenRelationship(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 LicenseSmartlicenseTokenRelationship(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 LicenseSmartlicenseTokenRelationship(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 LicenseSmartlicenseTokenRelationship(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 LicenseSmartlicenseTokenRelationship(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/license_smartlicense_token_response.py b/intersight/model/license_smartlicense_token_response.py index c19ca2a57e..bd2095fd7f 100644 --- a/intersight/model/license_smartlicense_token_response.py +++ b/intersight/model/license_smartlicense_token_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/ls_service_profile.py b/intersight/model/ls_service_profile.py index 1d8fa93d0d..a77b171595 100644 --- a/intersight/model/ls_service_profile.py +++ b/intersight/model/ls_service_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/ls_service_profile_all_of.py b/intersight/model/ls_service_profile_all_of.py index 056d4199ab..4bf0b4400e 100644 --- a/intersight/model/ls_service_profile_all_of.py +++ b/intersight/model/ls_service_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/ls_service_profile_list.py b/intersight/model/ls_service_profile_list.py index a7cb0a0b79..45fd023e55 100644 --- a/intersight/model/ls_service_profile_list.py +++ b/intersight/model/ls_service_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/ls_service_profile_list_all_of.py b/intersight/model/ls_service_profile_list_all_of.py index b41db43c24..20bbd02245 100644 --- a/intersight/model/ls_service_profile_list_all_of.py +++ b/intersight/model/ls_service_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/ls_service_profile_response.py b/intersight/model/ls_service_profile_response.py index 58a0353b4d..7644aa48ca 100644 --- a/intersight/model/ls_service_profile_response.py +++ b/intersight/model/ls_service_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/macpool_block.py b/intersight/model/macpool_block.py index a615740141..b4fdfabd80 100644 --- a/intersight/model/macpool_block.py +++ b/intersight/model/macpool_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/macpool_block_all_of.py b/intersight/model/macpool_block_all_of.py index 0095e131b9..1ef39344b8 100644 --- a/intersight/model/macpool_block_all_of.py +++ b/intersight/model/macpool_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/macpool_id_block.py b/intersight/model/macpool_id_block.py index e2e1c3db69..87973566ce 100644 --- a/intersight/model/macpool_id_block.py +++ b/intersight/model/macpool_id_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/macpool_id_block_all_of.py b/intersight/model/macpool_id_block_all_of.py index 3000f12599..1aad58c3a7 100644 --- a/intersight/model/macpool_id_block_all_of.py +++ b/intersight/model/macpool_id_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/macpool_id_block_list.py b/intersight/model/macpool_id_block_list.py index 5994fc3796..26b1a1f6ca 100644 --- a/intersight/model/macpool_id_block_list.py +++ b/intersight/model/macpool_id_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/macpool_id_block_list_all_of.py b/intersight/model/macpool_id_block_list_all_of.py index b626411a58..7e2cc589e9 100644 --- a/intersight/model/macpool_id_block_list_all_of.py +++ b/intersight/model/macpool_id_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/macpool_id_block_relationship.py b/intersight/model/macpool_id_block_relationship.py index 511a25006d..059e272b0f 100644 --- a/intersight/model/macpool_id_block_relationship.py +++ b/intersight/model/macpool_id_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 MacpoolIdBlockRelationship(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 MacpoolIdBlockRelationship(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 MacpoolIdBlockRelationship(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 MacpoolIdBlockRelationship(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 MacpoolIdBlockRelationship(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 MacpoolIdBlockRelationship(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 MacpoolIdBlockRelationship(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 MacpoolIdBlockRelationship(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 MacpoolIdBlockRelationship(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 MacpoolIdBlockRelationship(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/macpool_id_block_response.py b/intersight/model/macpool_id_block_response.py index 7cd16f0a71..226559ca6a 100644 --- a/intersight/model/macpool_id_block_response.py +++ b/intersight/model/macpool_id_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/macpool_lease.py b/intersight/model/macpool_lease.py index 54fe1b9f51..d81dd033ac 100644 --- a/intersight/model/macpool_lease.py +++ b/intersight/model/macpool_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/macpool_lease_all_of.py b/intersight/model/macpool_lease_all_of.py index 823295a30e..909a857a8a 100644 --- a/intersight/model/macpool_lease_all_of.py +++ b/intersight/model/macpool_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/macpool_lease_list.py b/intersight/model/macpool_lease_list.py index c18dc48d4b..f270830fd1 100644 --- a/intersight/model/macpool_lease_list.py +++ b/intersight/model/macpool_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/macpool_lease_list_all_of.py b/intersight/model/macpool_lease_list_all_of.py index 4610140854..3e89d123d8 100644 --- a/intersight/model/macpool_lease_list_all_of.py +++ b/intersight/model/macpool_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/macpool_lease_relationship.py b/intersight/model/macpool_lease_relationship.py index b45d815f71..ac0707b460 100644 --- a/intersight/model/macpool_lease_relationship.py +++ b/intersight/model/macpool_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 MacpoolLeaseRelationship(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 MacpoolLeaseRelationship(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 MacpoolLeaseRelationship(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 MacpoolLeaseRelationship(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 MacpoolLeaseRelationship(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 MacpoolLeaseRelationship(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 MacpoolLeaseRelationship(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 MacpoolLeaseRelationship(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 MacpoolLeaseRelationship(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 MacpoolLeaseRelationship(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/macpool_lease_response.py b/intersight/model/macpool_lease_response.py index 89fc1bfaf5..c46e1a2603 100644 --- a/intersight/model/macpool_lease_response.py +++ b/intersight/model/macpool_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/macpool_pool.py b/intersight/model/macpool_pool.py index 24563784e9..4a3c836f52 100644 --- a/intersight/model/macpool_pool.py +++ b/intersight/model/macpool_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/macpool_pool_all_of.py b/intersight/model/macpool_pool_all_of.py index 5cea5c396c..264bcf23c3 100644 --- a/intersight/model/macpool_pool_all_of.py +++ b/intersight/model/macpool_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/macpool_pool_list.py b/intersight/model/macpool_pool_list.py index e4d4945e04..c2f21a8ac5 100644 --- a/intersight/model/macpool_pool_list.py +++ b/intersight/model/macpool_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/macpool_pool_list_all_of.py b/intersight/model/macpool_pool_list_all_of.py index 13e35dfa5a..271be9214c 100644 --- a/intersight/model/macpool_pool_list_all_of.py +++ b/intersight/model/macpool_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/macpool_pool_member.py b/intersight/model/macpool_pool_member.py index e0fe537998..8d3b76f717 100644 --- a/intersight/model/macpool_pool_member.py +++ b/intersight/model/macpool_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/macpool_pool_member_all_of.py b/intersight/model/macpool_pool_member_all_of.py index 5c6231792b..a7d4e77bc8 100644 --- a/intersight/model/macpool_pool_member_all_of.py +++ b/intersight/model/macpool_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/macpool_pool_member_list.py b/intersight/model/macpool_pool_member_list.py index 5225d646ec..4233ecd885 100644 --- a/intersight/model/macpool_pool_member_list.py +++ b/intersight/model/macpool_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/macpool_pool_member_list_all_of.py b/intersight/model/macpool_pool_member_list_all_of.py index 01324a5f48..9f5fc9da2f 100644 --- a/intersight/model/macpool_pool_member_list_all_of.py +++ b/intersight/model/macpool_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/macpool_pool_member_relationship.py b/intersight/model/macpool_pool_member_relationship.py index adecf775ae..f69cf00bbc 100644 --- a/intersight/model/macpool_pool_member_relationship.py +++ b/intersight/model/macpool_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 MacpoolPoolMemberRelationship(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 MacpoolPoolMemberRelationship(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 MacpoolPoolMemberRelationship(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 MacpoolPoolMemberRelationship(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 MacpoolPoolMemberRelationship(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 MacpoolPoolMemberRelationship(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 MacpoolPoolMemberRelationship(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 MacpoolPoolMemberRelationship(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 MacpoolPoolMemberRelationship(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 MacpoolPoolMemberRelationship(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/macpool_pool_member_response.py b/intersight/model/macpool_pool_member_response.py index b383bf674d..229ee92b3d 100644 --- a/intersight/model/macpool_pool_member_response.py +++ b/intersight/model/macpool_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/macpool_pool_relationship.py b/intersight/model/macpool_pool_relationship.py index 409e4a20e8..2269c50cb9 100644 --- a/intersight/model/macpool_pool_relationship.py +++ b/intersight/model/macpool_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 MacpoolPoolRelationship(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 MacpoolPoolRelationship(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 MacpoolPoolRelationship(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 MacpoolPoolRelationship(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 MacpoolPoolRelationship(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 MacpoolPoolRelationship(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 MacpoolPoolRelationship(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 MacpoolPoolRelationship(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 MacpoolPoolRelationship(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 MacpoolPoolRelationship(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/macpool_pool_response.py b/intersight/model/macpool_pool_response.py index 559e468c7d..0a1a7b1107 100644 --- a/intersight/model/macpool_pool_response.py +++ b/intersight/model/macpool_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/macpool_universe.py b/intersight/model/macpool_universe.py index 76279cbf13..995a90c407 100644 --- a/intersight/model/macpool_universe.py +++ b/intersight/model/macpool_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/macpool_universe_all_of.py b/intersight/model/macpool_universe_all_of.py index e66fe3b9c6..9607420e75 100644 --- a/intersight/model/macpool_universe_all_of.py +++ b/intersight/model/macpool_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/macpool_universe_list.py b/intersight/model/macpool_universe_list.py index 448c52c400..40da329edb 100644 --- a/intersight/model/macpool_universe_list.py +++ b/intersight/model/macpool_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/macpool_universe_list_all_of.py b/intersight/model/macpool_universe_list_all_of.py index 7917ef9587..1273d441f3 100644 --- a/intersight/model/macpool_universe_list_all_of.py +++ b/intersight/model/macpool_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/macpool_universe_relationship.py b/intersight/model/macpool_universe_relationship.py index c749625dfc..d353727435 100644 --- a/intersight/model/macpool_universe_relationship.py +++ b/intersight/model/macpool_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 MacpoolUniverseRelationship(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 MacpoolUniverseRelationship(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 MacpoolUniverseRelationship(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 MacpoolUniverseRelationship(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 MacpoolUniverseRelationship(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 MacpoolUniverseRelationship(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 MacpoolUniverseRelationship(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 MacpoolUniverseRelationship(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 MacpoolUniverseRelationship(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 MacpoolUniverseRelationship(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/macpool_universe_response.py b/intersight/model/macpool_universe_response.py index 399a0e53d0..2be5c91f34 100644 --- a/intersight/model/macpool_universe_response.py +++ b/intersight/model/macpool_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/management_controller.py b/intersight/model/management_controller.py index ae735f9788..5f0298bdae 100644 --- a/intersight/model/management_controller.py +++ b/intersight/model/management_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/management_controller_all_of.py b/intersight/model/management_controller_all_of.py index 67300cfda7..17028a57c2 100644 --- a/intersight/model/management_controller_all_of.py +++ b/intersight/model/management_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/management_controller_list.py b/intersight/model/management_controller_list.py index a109b5d3a7..3c18af5d3f 100644 --- a/intersight/model/management_controller_list.py +++ b/intersight/model/management_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/management_controller_list_all_of.py b/intersight/model/management_controller_list_all_of.py index c7a172891e..7973837948 100644 --- a/intersight/model/management_controller_list_all_of.py +++ b/intersight/model/management_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/management_controller_relationship.py b/intersight/model/management_controller_relationship.py index 08f5306edb..4ca636e323 100644 --- a/intersight/model/management_controller_relationship.py +++ b/intersight/model/management_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 """ @@ -98,6 +98,8 @@ class ManagementControllerRelationship(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 ManagementControllerRelationship(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 ManagementControllerRelationship(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 ManagementControllerRelationship(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 ManagementControllerRelationship(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 ManagementControllerRelationship(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 ManagementControllerRelationship(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 ManagementControllerRelationship(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 ManagementControllerRelationship(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 ManagementControllerRelationship(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/management_controller_response.py b/intersight/model/management_controller_response.py index 372782c878..2bb7b237bb 100644 --- a/intersight/model/management_controller_response.py +++ b/intersight/model/management_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/management_entity.py b/intersight/model/management_entity.py index 34836e7c4a..8d0bacbf81 100644 --- a/intersight/model/management_entity.py +++ b/intersight/model/management_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/management_entity_all_of.py b/intersight/model/management_entity_all_of.py index a603706638..9cb6b9534b 100644 --- a/intersight/model/management_entity_all_of.py +++ b/intersight/model/management_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/management_entity_list.py b/intersight/model/management_entity_list.py index 4834f2628b..932756902e 100644 --- a/intersight/model/management_entity_list.py +++ b/intersight/model/management_entity_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/management_entity_list_all_of.py b/intersight/model/management_entity_list_all_of.py index 60cb9abbb7..3521cfffa3 100644 --- a/intersight/model/management_entity_list_all_of.py +++ b/intersight/model/management_entity_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/management_entity_relationship.py b/intersight/model/management_entity_relationship.py index d3eafd863d..388725bd9a 100644 --- a/intersight/model/management_entity_relationship.py +++ b/intersight/model/management_entity_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 ManagementEntityRelationship(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 ManagementEntityRelationship(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 ManagementEntityRelationship(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 ManagementEntityRelationship(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 ManagementEntityRelationship(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 ManagementEntityRelationship(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 ManagementEntityRelationship(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 ManagementEntityRelationship(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 ManagementEntityRelationship(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 ManagementEntityRelationship(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/management_entity_response.py b/intersight/model/management_entity_response.py index 7d65238301..fb2f298019 100644 --- a/intersight/model/management_entity_response.py +++ b/intersight/model/management_entity_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/management_interface.py b/intersight/model/management_interface.py index d5a1c795bc..032e9cb3c9 100644 --- a/intersight/model/management_interface.py +++ b/intersight/model/management_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/management_interface_all_of.py b/intersight/model/management_interface_all_of.py index 46805e222a..cf39d79ed4 100644 --- a/intersight/model/management_interface_all_of.py +++ b/intersight/model/management_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/management_interface_list.py b/intersight/model/management_interface_list.py index 273495a417..0fde58ce64 100644 --- a/intersight/model/management_interface_list.py +++ b/intersight/model/management_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/management_interface_list_all_of.py b/intersight/model/management_interface_list_all_of.py index 6d2a0dc832..3f58fa4b1f 100644 --- a/intersight/model/management_interface_list_all_of.py +++ b/intersight/model/management_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/management_interface_relationship.py b/intersight/model/management_interface_relationship.py index 36222027f8..2ed3d59ef9 100644 --- a/intersight/model/management_interface_relationship.py +++ b/intersight/model/management_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 """ @@ -78,6 +78,8 @@ class ManagementInterfaceRelationship(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 ManagementInterfaceRelationship(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 ManagementInterfaceRelationship(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 ManagementInterfaceRelationship(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 ManagementInterfaceRelationship(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 ManagementInterfaceRelationship(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 ManagementInterfaceRelationship(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 ManagementInterfaceRelationship(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 ManagementInterfaceRelationship(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 ManagementInterfaceRelationship(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/management_interface_response.py b/intersight/model/management_interface_response.py index 56e5460fdb..3d21934dbe 100644 --- a/intersight/model/management_interface_response.py +++ b/intersight/model/management_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/memory_abstract_unit.py b/intersight/model/memory_abstract_unit.py index 10ec5ca06a..b24e5ff1a8 100644 --- a/intersight/model/memory_abstract_unit.py +++ b/intersight/model/memory_abstract_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 """ @@ -125,6 +125,8 @@ class MemoryAbstractUnit(ModelComposed): 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError", 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning", 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical", + 'MEMORYBANKERROR': "MemoryBankError", + 'MEMORYRANKERROR': "MemoryRankError", 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical", 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning", 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical", diff --git a/intersight/model/memory_abstract_unit_all_of.py b/intersight/model/memory_abstract_unit_all_of.py index 9460e10590..3fc7e65064 100644 --- a/intersight/model/memory_abstract_unit_all_of.py +++ b/intersight/model/memory_abstract_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 """ @@ -105,6 +105,8 @@ class MemoryAbstractUnitAllOf(ModelNormal): 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError", 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning", 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical", + 'MEMORYBANKERROR': "MemoryBankError", + 'MEMORYRANKERROR': "MemoryRankError", 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical", 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning", 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical", diff --git a/intersight/model/memory_array.py b/intersight/model/memory_array.py index 62dbedcf79..12402be68a 100644 --- a/intersight/model/memory_array.py +++ b/intersight/model/memory_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/memory_array_all_of.py b/intersight/model/memory_array_all_of.py index 2688de2feb..e7a80d43e4 100644 --- a/intersight/model/memory_array_all_of.py +++ b/intersight/model/memory_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/memory_array_list.py b/intersight/model/memory_array_list.py index 49650b5b88..8f4ad0fbfa 100644 --- a/intersight/model/memory_array_list.py +++ b/intersight/model/memory_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/memory_array_list_all_of.py b/intersight/model/memory_array_list_all_of.py index 8dfc4d1a13..25ff957bd9 100644 --- a/intersight/model/memory_array_list_all_of.py +++ b/intersight/model/memory_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/memory_array_relationship.py b/intersight/model/memory_array_relationship.py index 20e5a27c75..39ac3d60f0 100644 --- a/intersight/model/memory_array_relationship.py +++ b/intersight/model/memory_array_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 MemoryArrayRelationship(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 MemoryArrayRelationship(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 MemoryArrayRelationship(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 MemoryArrayRelationship(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 MemoryArrayRelationship(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 MemoryArrayRelationship(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 MemoryArrayRelationship(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 MemoryArrayRelationship(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 MemoryArrayRelationship(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 MemoryArrayRelationship(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/memory_array_response.py b/intersight/model/memory_array_response.py index 8bed07a3ee..4ae96cb3d1 100644 --- a/intersight/model/memory_array_response.py +++ b/intersight/model/memory_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/memory_persistent_memory_config_result.py b/intersight/model/memory_persistent_memory_config_result.py index 67d7f71702..0bfe3dee41 100644 --- a/intersight/model/memory_persistent_memory_config_result.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_config_result_all_of.py b/intersight/model/memory_persistent_memory_config_result_all_of.py index 2fdfb012bd..86326f1177 100644 --- a/intersight/model/memory_persistent_memory_config_result_all_of.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_config_result_list.py b/intersight/model/memory_persistent_memory_config_result_list.py index 07316a2b9e..dc6b588373 100644 --- a/intersight/model/memory_persistent_memory_config_result_list.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_config_result_list_all_of.py b/intersight/model/memory_persistent_memory_config_result_list_all_of.py index b28b83d597..956ee23a7e 100644 --- a/intersight/model/memory_persistent_memory_config_result_list_all_of.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_config_result_relationship.py b/intersight/model/memory_persistent_memory_config_result_relationship.py index 73384ad9aa..bedde100dc 100644 --- a/intersight/model/memory_persistent_memory_config_result_relationship.py +++ b/intersight/model/memory_persistent_memory_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 """ @@ -80,6 +80,8 @@ class MemoryPersistentMemoryConfigResultRelationship(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 MemoryPersistentMemoryConfigResultRelationship(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 MemoryPersistentMemoryConfigResultRelationship(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 MemoryPersistentMemoryConfigResultRelationship(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 MemoryPersistentMemoryConfigResultRelationship(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 MemoryPersistentMemoryConfigResultRelationship(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 MemoryPersistentMemoryConfigResultRelationship(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 MemoryPersistentMemoryConfigResultRelationship(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 MemoryPersistentMemoryConfigResultRelationship(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 MemoryPersistentMemoryConfigResultRelationship(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/memory_persistent_memory_config_result_response.py b/intersight/model/memory_persistent_memory_config_result_response.py index e82385500d..55469c0790 100644 --- a/intersight/model/memory_persistent_memory_config_result_response.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_configuration.py b/intersight/model/memory_persistent_memory_configuration.py index 8ba84c34b7..64ec40d1e1 100644 --- a/intersight/model/memory_persistent_memory_configuration.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_configuration_all_of.py b/intersight/model/memory_persistent_memory_configuration_all_of.py index a362eec256..5be2f04061 100644 --- a/intersight/model/memory_persistent_memory_configuration_all_of.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_configuration_list.py b/intersight/model/memory_persistent_memory_configuration_list.py index 1f49d939c2..35165abdf7 100644 --- a/intersight/model/memory_persistent_memory_configuration_list.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_configuration_list_all_of.py b/intersight/model/memory_persistent_memory_configuration_list_all_of.py index 2f960fb708..429c66c174 100644 --- a/intersight/model/memory_persistent_memory_configuration_list_all_of.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_configuration_relationship.py b/intersight/model/memory_persistent_memory_configuration_relationship.py index 6005804fee..b2e195e214 100644 --- a/intersight/model/memory_persistent_memory_configuration_relationship.py +++ b/intersight/model/memory_persistent_memory_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 """ @@ -82,6 +82,8 @@ class MemoryPersistentMemoryConfigurationRelationship(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 MemoryPersistentMemoryConfigurationRelationship(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 MemoryPersistentMemoryConfigurationRelationship(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 MemoryPersistentMemoryConfigurationRelationship(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 MemoryPersistentMemoryConfigurationRelationship(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 MemoryPersistentMemoryConfigurationRelationship(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 MemoryPersistentMemoryConfigurationRelationship(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 MemoryPersistentMemoryConfigurationRelationship(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 MemoryPersistentMemoryConfigurationRelationship(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 MemoryPersistentMemoryConfigurationRelationship(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/memory_persistent_memory_configuration_response.py b/intersight/model/memory_persistent_memory_configuration_response.py index a5e1e0a5c9..2b96ceab44 100644 --- a/intersight/model/memory_persistent_memory_configuration_response.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_goal.py b/intersight/model/memory_persistent_memory_goal.py index 73a9514454..910310eca7 100644 --- a/intersight/model/memory_persistent_memory_goal.py +++ b/intersight/model/memory_persistent_memory_goal.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/memory_persistent_memory_goal_all_of.py b/intersight/model/memory_persistent_memory_goal_all_of.py index b0f82c3ca7..79de600e5a 100644 --- a/intersight/model/memory_persistent_memory_goal_all_of.py +++ b/intersight/model/memory_persistent_memory_goal_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/memory_persistent_memory_local_security.py b/intersight/model/memory_persistent_memory_local_security.py index f02c6f8b9a..f5445fb4e4 100644 --- a/intersight/model/memory_persistent_memory_local_security.py +++ b/intersight/model/memory_persistent_memory_local_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/memory_persistent_memory_local_security_all_of.py b/intersight/model/memory_persistent_memory_local_security_all_of.py index 77cfdb374b..13d0cf903f 100644 --- a/intersight/model/memory_persistent_memory_local_security_all_of.py +++ b/intersight/model/memory_persistent_memory_local_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/memory_persistent_memory_logical_namespace.py b/intersight/model/memory_persistent_memory_logical_namespace.py index 5a18123c23..fa27570cdf 100644 --- a/intersight/model/memory_persistent_memory_logical_namespace.py +++ b/intersight/model/memory_persistent_memory_logical_namespace.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/memory_persistent_memory_logical_namespace_all_of.py b/intersight/model/memory_persistent_memory_logical_namespace_all_of.py index a298b5b59b..37a9b0ebb9 100644 --- a/intersight/model/memory_persistent_memory_logical_namespace_all_of.py +++ b/intersight/model/memory_persistent_memory_logical_namespace_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/memory_persistent_memory_namespace.py b/intersight/model/memory_persistent_memory_namespace.py index 8c5ceb89f1..a798f5e29f 100644 --- a/intersight/model/memory_persistent_memory_namespace.py +++ b/intersight/model/memory_persistent_memory_namespace.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/memory_persistent_memory_namespace_all_of.py b/intersight/model/memory_persistent_memory_namespace_all_of.py index a03f7e0f3f..4f96e8d8df 100644 --- a/intersight/model/memory_persistent_memory_namespace_all_of.py +++ b/intersight/model/memory_persistent_memory_namespace_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/memory_persistent_memory_namespace_config_result.py b/intersight/model/memory_persistent_memory_namespace_config_result.py index 154c5f1ae4..e6e1368bb2 100644 --- a/intersight/model/memory_persistent_memory_namespace_config_result.py +++ b/intersight/model/memory_persistent_memory_namespace_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/memory_persistent_memory_namespace_config_result_all_of.py b/intersight/model/memory_persistent_memory_namespace_config_result_all_of.py index 84f5a01754..fa48b6b744 100644 --- a/intersight/model/memory_persistent_memory_namespace_config_result_all_of.py +++ b/intersight/model/memory_persistent_memory_namespace_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/memory_persistent_memory_namespace_config_result_list.py b/intersight/model/memory_persistent_memory_namespace_config_result_list.py index 3e86b6e12e..0ba8387ed1 100644 --- a/intersight/model/memory_persistent_memory_namespace_config_result_list.py +++ b/intersight/model/memory_persistent_memory_namespace_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/memory_persistent_memory_namespace_config_result_list_all_of.py b/intersight/model/memory_persistent_memory_namespace_config_result_list_all_of.py index aaf13cd0ec..5fcdd2ff96 100644 --- a/intersight/model/memory_persistent_memory_namespace_config_result_list_all_of.py +++ b/intersight/model/memory_persistent_memory_namespace_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/memory_persistent_memory_namespace_config_result_relationship.py b/intersight/model/memory_persistent_memory_namespace_config_result_relationship.py index 25d5d628c6..b95200c058 100644 --- a/intersight/model/memory_persistent_memory_namespace_config_result_relationship.py +++ b/intersight/model/memory_persistent_memory_namespace_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 """ @@ -78,6 +78,8 @@ class MemoryPersistentMemoryNamespaceConfigResultRelationship(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 MemoryPersistentMemoryNamespaceConfigResultRelationship(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 MemoryPersistentMemoryNamespaceConfigResultRelationship(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 MemoryPersistentMemoryNamespaceConfigResultRelationship(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 MemoryPersistentMemoryNamespaceConfigResultRelationship(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 MemoryPersistentMemoryNamespaceConfigResultRelationship(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 MemoryPersistentMemoryNamespaceConfigResultRelationship(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 MemoryPersistentMemoryNamespaceConfigResultRelationship(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 MemoryPersistentMemoryNamespaceConfigResultRelationship(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 MemoryPersistentMemoryNamespaceConfigResultRelationship(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/memory_persistent_memory_namespace_config_result_response.py b/intersight/model/memory_persistent_memory_namespace_config_result_response.py index 82c110a086..6c58dbbbad 100644 --- a/intersight/model/memory_persistent_memory_namespace_config_result_response.py +++ b/intersight/model/memory_persistent_memory_namespace_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/memory_persistent_memory_namespace_list.py b/intersight/model/memory_persistent_memory_namespace_list.py index 25b63a5234..09d28327c4 100644 --- a/intersight/model/memory_persistent_memory_namespace_list.py +++ b/intersight/model/memory_persistent_memory_namespace_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/memory_persistent_memory_namespace_list_all_of.py b/intersight/model/memory_persistent_memory_namespace_list_all_of.py index 03f02a9e5d..e95f399c9e 100644 --- a/intersight/model/memory_persistent_memory_namespace_list_all_of.py +++ b/intersight/model/memory_persistent_memory_namespace_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/memory_persistent_memory_namespace_relationship.py b/intersight/model/memory_persistent_memory_namespace_relationship.py index ccee150b9e..b5db476f2e 100644 --- a/intersight/model/memory_persistent_memory_namespace_relationship.py +++ b/intersight/model/memory_persistent_memory_namespace_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 MemoryPersistentMemoryNamespaceRelationship(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 MemoryPersistentMemoryNamespaceRelationship(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 MemoryPersistentMemoryNamespaceRelationship(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 MemoryPersistentMemoryNamespaceRelationship(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 MemoryPersistentMemoryNamespaceRelationship(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 MemoryPersistentMemoryNamespaceRelationship(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 MemoryPersistentMemoryNamespaceRelationship(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 MemoryPersistentMemoryNamespaceRelationship(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 MemoryPersistentMemoryNamespaceRelationship(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 MemoryPersistentMemoryNamespaceRelationship(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/memory_persistent_memory_namespace_response.py b/intersight/model/memory_persistent_memory_namespace_response.py index 6c477a227e..ed1f1c3822 100644 --- a/intersight/model/memory_persistent_memory_namespace_response.py +++ b/intersight/model/memory_persistent_memory_namespace_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/memory_persistent_memory_policy.py b/intersight/model/memory_persistent_memory_policy.py index 87eff2da80..5dfca49e55 100644 --- a/intersight/model/memory_persistent_memory_policy.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_policy_all_of.py b/intersight/model/memory_persistent_memory_policy_all_of.py index 61e766a160..15d556f867 100644 --- a/intersight/model/memory_persistent_memory_policy_all_of.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_policy_list.py b/intersight/model/memory_persistent_memory_policy_list.py index 0399f24f29..0341414579 100644 --- a/intersight/model/memory_persistent_memory_policy_list.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_policy_list_all_of.py b/intersight/model/memory_persistent_memory_policy_list_all_of.py index 00eee5bfe7..855ec49d4c 100644 --- a/intersight/model/memory_persistent_memory_policy_list_all_of.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_policy_response.py b/intersight/model/memory_persistent_memory_policy_response.py index 720ddd136a..fbdd003381 100644 --- a/intersight/model/memory_persistent_memory_policy_response.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_region.py b/intersight/model/memory_persistent_memory_region.py index 0b6c5e15c3..5fe458a7ba 100644 --- a/intersight/model/memory_persistent_memory_region.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_region_all_of.py b/intersight/model/memory_persistent_memory_region_all_of.py index 2805f5e62e..4e583419fa 100644 --- a/intersight/model/memory_persistent_memory_region_all_of.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_region_list.py b/intersight/model/memory_persistent_memory_region_list.py index 447ce445a2..794ac1d257 100644 --- a/intersight/model/memory_persistent_memory_region_list.py +++ b/intersight/model/memory_persistent_memory_region_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/memory_persistent_memory_region_list_all_of.py b/intersight/model/memory_persistent_memory_region_list_all_of.py index c2e515b4b4..19e4aa761a 100644 --- a/intersight/model/memory_persistent_memory_region_list_all_of.py +++ b/intersight/model/memory_persistent_memory_region_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/memory_persistent_memory_region_relationship.py b/intersight/model/memory_persistent_memory_region_relationship.py index 67aa03b130..f3ae6cf962 100644 --- a/intersight/model/memory_persistent_memory_region_relationship.py +++ b/intersight/model/memory_persistent_memory_region_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 MemoryPersistentMemoryRegionRelationship(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 MemoryPersistentMemoryRegionRelationship(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 MemoryPersistentMemoryRegionRelationship(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 MemoryPersistentMemoryRegionRelationship(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 MemoryPersistentMemoryRegionRelationship(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 MemoryPersistentMemoryRegionRelationship(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 MemoryPersistentMemoryRegionRelationship(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 MemoryPersistentMemoryRegionRelationship(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 MemoryPersistentMemoryRegionRelationship(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 MemoryPersistentMemoryRegionRelationship(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/memory_persistent_memory_region_response.py b/intersight/model/memory_persistent_memory_region_response.py index 00d62536c0..41f2b1ec76 100644 --- a/intersight/model/memory_persistent_memory_region_response.py +++ b/intersight/model/memory_persistent_memory_region_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/memory_persistent_memory_unit.py b/intersight/model/memory_persistent_memory_unit.py index b35fec02bb..58b31f5fa4 100644 --- a/intersight/model/memory_persistent_memory_unit.py +++ b/intersight/model/memory_persistent_memory_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 """ @@ -125,6 +125,8 @@ class MemoryPersistentMemoryUnit(ModelComposed): 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError", 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning", 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical", + 'MEMORYBANKERROR': "MemoryBankError", + 'MEMORYRANKERROR': "MemoryRankError", 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical", 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning", 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical", diff --git a/intersight/model/memory_persistent_memory_unit_all_of.py b/intersight/model/memory_persistent_memory_unit_all_of.py index 77fb76c01a..4476a48fae 100644 --- a/intersight/model/memory_persistent_memory_unit_all_of.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_unit_list.py b/intersight/model/memory_persistent_memory_unit_list.py index 71d0336c7f..d5a404a20c 100644 --- a/intersight/model/memory_persistent_memory_unit_list.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_unit_list_all_of.py b/intersight/model/memory_persistent_memory_unit_list_all_of.py index 39e6e3255e..9216c2ba83 100644 --- a/intersight/model/memory_persistent_memory_unit_list_all_of.py +++ b/intersight/model/memory_persistent_memory_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/memory_persistent_memory_unit_relationship.py b/intersight/model/memory_persistent_memory_unit_relationship.py index 7c02074b45..a578a9fa4c 100644 --- a/intersight/model/memory_persistent_memory_unit_relationship.py +++ b/intersight/model/memory_persistent_memory_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 """ @@ -122,6 +122,8 @@ class MemoryPersistentMemoryUnitRelationship(ModelComposed): 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError", 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning", 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical", + 'MEMORYBANKERROR': "MemoryBankError", + 'MEMORYRANKERROR': "MemoryRankError", 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical", 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning", 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical", @@ -136,6 +138,8 @@ class MemoryPersistentMemoryUnitRelationship(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 MemoryPersistentMemoryUnitRelationship(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 MemoryPersistentMemoryUnitRelationship(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 MemoryPersistentMemoryUnitRelationship(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 MemoryPersistentMemoryUnitRelationship(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 MemoryPersistentMemoryUnitRelationship(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 MemoryPersistentMemoryUnitRelationship(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 MemoryPersistentMemoryUnitRelationship(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 MemoryPersistentMemoryUnitRelationship(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 MemoryPersistentMemoryUnitRelationship(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/memory_persistent_memory_unit_response.py b/intersight/model/memory_persistent_memory_unit_response.py index f35e07ebdd..79b0be09db 100644 --- a/intersight/model/memory_persistent_memory_unit_response.py +++ b/intersight/model/memory_persistent_memory_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/memory_unit.py b/intersight/model/memory_unit.py index d44acc9a8a..e57f471fd4 100644 --- a/intersight/model/memory_unit.py +++ b/intersight/model/memory_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 """ @@ -125,6 +125,8 @@ class MemoryUnit(ModelComposed): 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError", 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning", 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical", + 'MEMORYBANKERROR': "MemoryBankError", + 'MEMORYRANKERROR': "MemoryRankError", 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical", 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning", 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical", diff --git a/intersight/model/memory_unit_all_of.py b/intersight/model/memory_unit_all_of.py index 55c0876ea1..88b3e61c60 100644 --- a/intersight/model/memory_unit_all_of.py +++ b/intersight/model/memory_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/memory_unit_list.py b/intersight/model/memory_unit_list.py index ca14e61054..e4e754b1bc 100644 --- a/intersight/model/memory_unit_list.py +++ b/intersight/model/memory_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/memory_unit_list_all_of.py b/intersight/model/memory_unit_list_all_of.py index b5019bf277..e8564cfc7e 100644 --- a/intersight/model/memory_unit_list_all_of.py +++ b/intersight/model/memory_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/memory_unit_relationship.py b/intersight/model/memory_unit_relationship.py index 21c1528b36..5a5de21bbb 100644 --- a/intersight/model/memory_unit_relationship.py +++ b/intersight/model/memory_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 """ @@ -122,6 +122,8 @@ class MemoryUnitRelationship(ModelComposed): 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError", 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning", 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical", + 'MEMORYBANKERROR': "MemoryBankError", + 'MEMORYRANKERROR': "MemoryRankError", 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical", 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning", 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical", @@ -136,6 +138,8 @@ class MemoryUnitRelationship(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 MemoryUnitRelationship(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 MemoryUnitRelationship(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 MemoryUnitRelationship(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 MemoryUnitRelationship(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 MemoryUnitRelationship(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 MemoryUnitRelationship(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 MemoryUnitRelationship(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 MemoryUnitRelationship(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 MemoryUnitRelationship(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/memory_unit_response.py b/intersight/model/memory_unit_response.py index 613d1922a8..cc9c4171f6 100644 --- a/intersight/model/memory_unit_response.py +++ b/intersight/model/memory_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/meta_access_privilege.py b/intersight/model/meta_access_privilege.py index 9bdbda35a1..885f47b19f 100644 --- a/intersight/model/meta_access_privilege.py +++ b/intersight/model/meta_access_privilege.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/meta_access_privilege_all_of.py b/intersight/model/meta_access_privilege_all_of.py index 79627bb206..ad4e4b0b38 100644 --- a/intersight/model/meta_access_privilege_all_of.py +++ b/intersight/model/meta_access_privilege_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/meta_definition.py b/intersight/model/meta_definition.py index f5c1b6119f..cdbfedd026 100644 --- a/intersight/model/meta_definition.py +++ b/intersight/model/meta_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 """ @@ -32,6 +32,7 @@ def lazy_import(): from intersight.model.meta_access_privilege import MetaAccessPrivilege from intersight.model.meta_definition_all_of import MetaDefinitionAllOf from intersight.model.meta_display_name_definition import MetaDisplayNameDefinition + from intersight.model.meta_identity_definition import MetaIdentityDefinition from intersight.model.meta_prop_definition import MetaPropDefinition from intersight.model.meta_relationship_definition import MetaRelationshipDefinition from intersight.model.mo_base_mo import MoBaseMo @@ -42,6 +43,7 @@ def lazy_import(): globals()['MetaAccessPrivilege'] = MetaAccessPrivilege globals()['MetaDefinitionAllOf'] = MetaDefinitionAllOf globals()['MetaDisplayNameDefinition'] = MetaDisplayNameDefinition + globals()['MetaIdentityDefinition'] = MetaIdentityDefinition globals()['MetaPropDefinition'] = MetaPropDefinition globals()['MetaRelationshipDefinition'] = MetaRelationshipDefinition globals()['MoBaseMo'] = MoBaseMo @@ -118,6 +120,7 @@ def openapi_types(): 'access_privileges': ([MetaAccessPrivilege], none_type,), # noqa: E501 'ancestor_classes': ([str], none_type,), # noqa: E501 'display_name_metas': ([MetaDisplayNameDefinition], none_type,), # noqa: E501 + 'identity_constraints': ([MetaIdentityDefinition], none_type,), # noqa: E501 'is_concrete': (bool,), # noqa: E501 'meta_type': (str,), # noqa: E501 'name': (str,), # noqa: E501 @@ -159,6 +162,7 @@ def discriminator(): 'access_privileges': 'AccessPrivileges', # noqa: E501 'ancestor_classes': 'AncestorClasses', # noqa: E501 'display_name_metas': 'DisplayNameMetas', # noqa: E501 + 'identity_constraints': 'IdentityConstraints', # noqa: E501 'is_concrete': 'IsConcrete', # noqa: E501 'meta_type': 'MetaType', # noqa: E501 'name': 'Name', # noqa: E501 @@ -240,6 +244,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 access_privileges ([MetaAccessPrivilege], none_type): [optional] # noqa: E501 ancestor_classes ([str], none_type): [optional] # noqa: E501 display_name_metas ([MetaDisplayNameDefinition], none_type): [optional] # noqa: E501 + identity_constraints ([MetaIdentityDefinition], none_type): [optional] # noqa: E501 is_concrete (bool): Boolean flag to specify whether the meta class is a concrete class or not.. [optional] # noqa: E501 meta_type (str): Indicates whether the meta class is a complex type or managed object. * `ManagedObject` - The meta.Definition object describes a managed object. * `ComplexType` - The meta.Definition object describes a nested complex type within a managed object.. [optional] if omitted the server will use the default value of "ManagedObject" # noqa: E501 name (str): The fully-qualified class name of the Managed Object or complex type. For example, \"compute:Blade\" where the Managed Object is \"Blade\" and the package is 'compute'.. [optional] # noqa: E501 diff --git a/intersight/model/meta_definition_all_of.py b/intersight/model/meta_definition_all_of.py index 6599829928..ccd2fb5e77 100644 --- a/intersight/model/meta_definition_all_of.py +++ b/intersight/model/meta_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 """ @@ -30,10 +30,12 @@ def lazy_import(): from intersight.model.meta_access_privilege import MetaAccessPrivilege from intersight.model.meta_display_name_definition import MetaDisplayNameDefinition + from intersight.model.meta_identity_definition import MetaIdentityDefinition from intersight.model.meta_prop_definition import MetaPropDefinition from intersight.model.meta_relationship_definition import MetaRelationshipDefinition globals()['MetaAccessPrivilege'] = MetaAccessPrivilege globals()['MetaDisplayNameDefinition'] = MetaDisplayNameDefinition + globals()['MetaIdentityDefinition'] = MetaIdentityDefinition globals()['MetaPropDefinition'] = MetaPropDefinition globals()['MetaRelationshipDefinition'] = MetaRelationshipDefinition @@ -99,6 +101,7 @@ def openapi_types(): 'access_privileges': ([MetaAccessPrivilege], none_type,), # noqa: E501 'ancestor_classes': ([str], none_type,), # noqa: E501 'display_name_metas': ([MetaDisplayNameDefinition], none_type,), # noqa: E501 + 'identity_constraints': ([MetaIdentityDefinition], none_type,), # noqa: E501 'is_concrete': (bool,), # noqa: E501 'meta_type': (str,), # noqa: E501 'name': (str,), # noqa: E501 @@ -124,6 +127,7 @@ def discriminator(): 'access_privileges': 'AccessPrivileges', # noqa: E501 'ancestor_classes': 'AncestorClasses', # noqa: E501 'display_name_metas': 'DisplayNameMetas', # noqa: E501 + 'identity_constraints': 'IdentityConstraints', # noqa: E501 'is_concrete': 'IsConcrete', # noqa: E501 'meta_type': 'MetaType', # noqa: E501 'name': 'Name', # noqa: E501 @@ -191,6 +195,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 access_privileges ([MetaAccessPrivilege], none_type): [optional] # noqa: E501 ancestor_classes ([str], none_type): [optional] # noqa: E501 display_name_metas ([MetaDisplayNameDefinition], none_type): [optional] # noqa: E501 + identity_constraints ([MetaIdentityDefinition], none_type): [optional] # noqa: E501 is_concrete (bool): Boolean flag to specify whether the meta class is a concrete class or not.. [optional] # noqa: E501 meta_type (str): Indicates whether the meta class is a complex type or managed object. * `ManagedObject` - The meta.Definition object describes a managed object. * `ComplexType` - The meta.Definition object describes a nested complex type within a managed object.. [optional] if omitted the server will use the default value of "ManagedObject" # noqa: E501 name (str): The fully-qualified class name of the Managed Object or complex type. For example, \"compute:Blade\" where the Managed Object is \"Blade\" and the package is 'compute'.. [optional] # noqa: E501 diff --git a/intersight/model/meta_definition_list.py b/intersight/model/meta_definition_list.py index 148cb488ea..0cc391521b 100644 --- a/intersight/model/meta_definition_list.py +++ b/intersight/model/meta_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/meta_definition_list_all_of.py b/intersight/model/meta_definition_list_all_of.py index fae361fb55..9c48d6512f 100644 --- a/intersight/model/meta_definition_list_all_of.py +++ b/intersight/model/meta_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/meta_definition_response.py b/intersight/model/meta_definition_response.py index 39a88ce71f..640dc31101 100644 --- a/intersight/model/meta_definition_response.py +++ b/intersight/model/meta_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/meta_display_name_definition.py b/intersight/model/meta_display_name_definition.py index 00a8f7aa75..84bb8533b7 100644 --- a/intersight/model/meta_display_name_definition.py +++ b/intersight/model/meta_display_name_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/meta_display_name_definition_all_of.py b/intersight/model/meta_display_name_definition_all_of.py index f66efd3c61..4f0789fae0 100644 --- a/intersight/model/meta_display_name_definition_all_of.py +++ b/intersight/model/meta_display_name_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/meta_identity_definition.py b/intersight/model/meta_identity_definition.py new file mode 100644 index 0000000000..42a3b9266d --- /dev/null +++ b/intersight/model/meta_identity_definition.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.meta_identity_definition_all_of import MetaIdentityDefinitionAllOf + from intersight.model.mo_base_complex_type import MoBaseComplexType + globals()['MetaIdentityDefinitionAllOf'] = MetaIdentityDefinitionAllOf + globals()['MoBaseComplexType'] = MoBaseComplexType + + +class MetaIdentityDefinition(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',): { + 'META.IDENTITYDEFINITION': "meta.IdentityDefinition", + }, + ('object_type',): { + 'META.IDENTITYDEFINITION': "meta.IdentityDefinition", + }, + } + + 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 + 'fields': ([str], none_type,), # 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 + 'fields': 'Fields', # 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 + """MetaIdentityDefinition - 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 "meta.IdentityDefinition", must be one of ["meta.IdentityDefinition", ] # 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 "meta.IdentityDefinition", must be one of ["meta.IdentityDefinition", ] # 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,) + fields ([str], none_type): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "meta.IdentityDefinition") + object_type = kwargs.get('object_type', "meta.IdentityDefinition") + _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': [ + MetaIdentityDefinitionAllOf, + MoBaseComplexType, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/meta_identity_definition_all_of.py b/intersight/model/meta_identity_definition_all_of.py new file mode 100644 index 0000000000..d088c76951 --- /dev/null +++ b/intersight/model/meta_identity_definition_all_of.py @@ -0,0 +1,185 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 MetaIdentityDefinitionAllOf(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',): { + 'META.IDENTITYDEFINITION': "meta.IdentityDefinition", + }, + ('object_type',): { + 'META.IDENTITYDEFINITION': "meta.IdentityDefinition", + }, + } + + 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 + 'fields': ([str], none_type,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'fields': 'Fields', # 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 + """MetaIdentityDefinitionAllOf - 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 "meta.IdentityDefinition", must be one of ["meta.IdentityDefinition", ] # 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 "meta.IdentityDefinition", must be one of ["meta.IdentityDefinition", ] # 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,) + fields ([str], none_type): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "meta.IdentityDefinition") + object_type = kwargs.get('object_type', "meta.IdentityDefinition") + _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/meta_prop_definition.py b/intersight/model/meta_prop_definition.py index 7df96998a0..10434f218d 100644 --- a/intersight/model/meta_prop_definition.py +++ b/intersight/model/meta_prop_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 """ @@ -73,6 +73,24 @@ class MetaPropDefinition(ModelComposed): 'WRITEONLY': "WriteOnly", 'READONCREATE': "ReadOnCreate", }, + ('kind',): { + 'UNKNOWN': "Unknown", + 'BOOLEAN': "Boolean", + 'STRING': "String", + 'INTEGER': "Integer", + 'INT32': "Int32", + 'INT64': "Int64", + 'FLOAT': "Float", + 'DOUBLE': "Double", + 'DATE': "Date", + 'DURATION': "Duration", + 'TIME': "Time", + 'JSON': "Json", + 'BINARY': "Binary", + 'ENUMSTRING': "EnumString", + 'ENUMINTEGER': "EnumInteger", + 'COMPLEXTYPE': "ComplexType", + }, ('op_security',): { 'CLEARTEXT': "ClearText", 'ENCRYPTED': "Encrypted", @@ -112,9 +130,14 @@ def openapi_types(): 'class_id': (str,), # noqa: E501 'object_type': (str,), # noqa: E501 'api_access': (str,), # noqa: E501 + 'default': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 + 'is_collection': (bool,), # noqa: E501 + 'is_complex_type': (bool,), # noqa: E501 + 'kind': (str,), # noqa: E501 'name': (str,), # noqa: E501 'op_security': (str,), # noqa: E501 'search_weight': (float,), # noqa: E501 + 'type': (str,), # noqa: E501 } @cached_property @@ -129,9 +152,14 @@ def discriminator(): 'class_id': 'ClassId', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 'api_access': 'ApiAccess', # noqa: E501 + 'default': 'Default', # noqa: E501 + 'is_collection': 'IsCollection', # noqa: E501 + 'is_complex_type': 'IsComplexType', # noqa: E501 + 'kind': 'Kind', # noqa: E501 'name': 'Name', # noqa: E501 'op_security': 'OpSecurity', # noqa: E501 'search_weight': 'SearchWeight', # noqa: E501 + 'type': 'Type', # noqa: E501 } required_properties = set([ @@ -186,9 +214,14 @@ def __init__(self, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) api_access (str): API access control for the property. Examples are NoAccess, ReadOnly, CreateOnly etc. * `NoAccess` - The property is not accessible from the API. * `ReadOnly` - The value of the property is read-only.An HTTP 4xx status code is returned when the user sends a POST/PUT/PATCH request that containsa ReadOnly property. * `CreateOnly` - The value of the property can be set when the REST resource is created. It cannot be changed after object creation.An HTTP 4xx status code is returned when the user sends a POST/PUT/PATCH request that containsa CreateOnly property.CreateOnly properties are returned in the response body of HTTP GET requests. * `ReadWrite` - The property has read/write access. * `WriteOnly` - The value of the property can be set but it is never returned in the response body of supported HTTP methods.This settings is used for sensitive properties such as passwords. * `ReadOnCreate` - The value of the property is returned in the HTTP POST response body when the REST resource is created.The property is not writeable and cannot be queried through a GET request after the resource has been created.. [optional] if omitted the server will use the default value of "NoAccess" # noqa: E501 + default (bool, date, datetime, dict, float, int, list, str, none_type): The default value of the property. Not applicable when IsComplexType is True.. [optional] # noqa: E501 + is_collection (bool): Indicates whether the property is a collection (i.e. a JSON array), otherwise it is a single value.. [optional] # noqa: E501 + is_complex_type (bool): Indicates whether the property is a complex type, otherwise it is a basic scalar type.. [optional] # noqa: E501 + kind (str): The kind of the property. * `Unknown` - The property kind is unknown. * `Boolean` - The 'Boolean' kind of property. * `String` - The 'String' kind of property. * `Integer` - The 'Integer' kind of property. * `Int32` - The 'Int32' kind of property. * `Int64` - The 'Int64' kind of property. * `Float` - The 'Float' kind of property. * `Double` - The 'Double' kind of property. * `Date` - The 'Date' kind of property. * `Duration` - The 'Duration' kind of property. * `Time` - The 'Time' kind of property. * `Json` - The 'JSON' kind of property. * `Binary` - The 'Binary' kind of property. * `EnumString` - The 'EnumString' kind of property. * `EnumInteger` - The 'EnumInteger' kind of property. * `ComplexType` - The 'ComplexType' kind of property.. [optional] if omitted the server will use the default value of "Unknown" # noqa: E501 name (str): The name of the property.. [optional] # noqa: E501 op_security (str): The data-at-rest security protection applied to this property when a Managed Object is persisted. For example, Encrypted or Cleartext. * `ClearText` - Data at rest is not encrypted using account specific keys.Note that data is always protected using volume encryption. ClearText propertiesare queryable and searchable. * `Encrypted` - The value of the property is encrypted with account-specific cryptographic keys.This setting is used for properties that contain sensitive data. Encrypted propertiesare not queryable and searchable. * `Pbkdf2` - The value of the property is hashed using the pbkdf2 key derivation functions thattakes a password, a salt, and a cost factor as inputs then generates a password hash.Its purpose is to make each password guessing trial by an attacker who has obtaineda password hash file expensive and therefore the cost of a guessing attack high or prohibitive. * `Bcrypt` - The value of the property is hashed using the bcrypt key derivation function. * `Sha512crypt` - The value of the property is hashed using the sha512crypt key derivation function. * `Argon2id` - The value of the property is hashed using the argon2id key derivation function.. [optional] if omitted the server will use the default value of "ClearText" # noqa: E501 search_weight (float): Enables the property to be searchable from global search. A value of 0 means this property is not globally searchable.. [optional] # noqa: E501 + type (str): The type of the property. In case of collection properties the type is that of individual elements.. [optional] # noqa: E501 """ class_id = kwargs.get('class_id', "meta.PropDefinition") diff --git a/intersight/model/meta_prop_definition_all_of.py b/intersight/model/meta_prop_definition_all_of.py index f2901e6990..3164f1fa61 100644 --- a/intersight/model/meta_prop_definition_all_of.py +++ b/intersight/model/meta_prop_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 """ @@ -67,6 +67,24 @@ class MetaPropDefinitionAllOf(ModelNormal): 'WRITEONLY': "WriteOnly", 'READONCREATE': "ReadOnCreate", }, + ('kind',): { + 'UNKNOWN': "Unknown", + 'BOOLEAN': "Boolean", + 'STRING': "String", + 'INTEGER': "Integer", + 'INT32': "Int32", + 'INT64': "Int64", + 'FLOAT': "Float", + 'DOUBLE': "Double", + 'DATE': "Date", + 'DURATION': "Duration", + 'TIME': "Time", + 'JSON': "Json", + 'BINARY': "Binary", + 'ENUMSTRING': "EnumString", + 'ENUMINTEGER': "EnumInteger", + 'COMPLEXTYPE': "ComplexType", + }, ('op_security',): { 'CLEARTEXT': "ClearText", 'ENCRYPTED': "Encrypted", @@ -98,9 +116,14 @@ def openapi_types(): 'class_id': (str,), # noqa: E501 'object_type': (str,), # noqa: E501 'api_access': (str,), # noqa: E501 + 'default': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 + 'is_collection': (bool,), # noqa: E501 + 'is_complex_type': (bool,), # noqa: E501 + 'kind': (str,), # noqa: E501 'name': (str,), # noqa: E501 'op_security': (str,), # noqa: E501 'search_weight': (float,), # noqa: E501 + 'type': (str,), # noqa: E501 } @cached_property @@ -112,9 +135,14 @@ def discriminator(): 'class_id': 'ClassId', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 'api_access': 'ApiAccess', # noqa: E501 + 'default': 'Default', # noqa: E501 + 'is_collection': 'IsCollection', # noqa: E501 + 'is_complex_type': 'IsComplexType', # noqa: E501 + 'kind': 'Kind', # noqa: E501 'name': 'Name', # noqa: E501 'op_security': 'OpSecurity', # noqa: E501 'search_weight': 'SearchWeight', # noqa: E501 + 'type': 'Type', # noqa: E501 } _composed_schemas = {} @@ -168,9 +196,14 @@ def __init__(self, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) api_access (str): API access control for the property. Examples are NoAccess, ReadOnly, CreateOnly etc. * `NoAccess` - The property is not accessible from the API. * `ReadOnly` - The value of the property is read-only.An HTTP 4xx status code is returned when the user sends a POST/PUT/PATCH request that containsa ReadOnly property. * `CreateOnly` - The value of the property can be set when the REST resource is created. It cannot be changed after object creation.An HTTP 4xx status code is returned when the user sends a POST/PUT/PATCH request that containsa CreateOnly property.CreateOnly properties are returned in the response body of HTTP GET requests. * `ReadWrite` - The property has read/write access. * `WriteOnly` - The value of the property can be set but it is never returned in the response body of supported HTTP methods.This settings is used for sensitive properties such as passwords. * `ReadOnCreate` - The value of the property is returned in the HTTP POST response body when the REST resource is created.The property is not writeable and cannot be queried through a GET request after the resource has been created.. [optional] if omitted the server will use the default value of "NoAccess" # noqa: E501 + default (bool, date, datetime, dict, float, int, list, str, none_type): The default value of the property. Not applicable when IsComplexType is True.. [optional] # noqa: E501 + is_collection (bool): Indicates whether the property is a collection (i.e. a JSON array), otherwise it is a single value.. [optional] # noqa: E501 + is_complex_type (bool): Indicates whether the property is a complex type, otherwise it is a basic scalar type.. [optional] # noqa: E501 + kind (str): The kind of the property. * `Unknown` - The property kind is unknown. * `Boolean` - The 'Boolean' kind of property. * `String` - The 'String' kind of property. * `Integer` - The 'Integer' kind of property. * `Int32` - The 'Int32' kind of property. * `Int64` - The 'Int64' kind of property. * `Float` - The 'Float' kind of property. * `Double` - The 'Double' kind of property. * `Date` - The 'Date' kind of property. * `Duration` - The 'Duration' kind of property. * `Time` - The 'Time' kind of property. * `Json` - The 'JSON' kind of property. * `Binary` - The 'Binary' kind of property. * `EnumString` - The 'EnumString' kind of property. * `EnumInteger` - The 'EnumInteger' kind of property. * `ComplexType` - The 'ComplexType' kind of property.. [optional] if omitted the server will use the default value of "Unknown" # noqa: E501 name (str): The name of the property.. [optional] # noqa: E501 op_security (str): The data-at-rest security protection applied to this property when a Managed Object is persisted. For example, Encrypted or Cleartext. * `ClearText` - Data at rest is not encrypted using account specific keys.Note that data is always protected using volume encryption. ClearText propertiesare queryable and searchable. * `Encrypted` - The value of the property is encrypted with account-specific cryptographic keys.This setting is used for properties that contain sensitive data. Encrypted propertiesare not queryable and searchable. * `Pbkdf2` - The value of the property is hashed using the pbkdf2 key derivation functions thattakes a password, a salt, and a cost factor as inputs then generates a password hash.Its purpose is to make each password guessing trial by an attacker who has obtaineda password hash file expensive and therefore the cost of a guessing attack high or prohibitive. * `Bcrypt` - The value of the property is hashed using the bcrypt key derivation function. * `Sha512crypt` - The value of the property is hashed using the sha512crypt key derivation function. * `Argon2id` - The value of the property is hashed using the argon2id key derivation function.. [optional] if omitted the server will use the default value of "ClearText" # noqa: E501 search_weight (float): Enables the property to be searchable from global search. A value of 0 means this property is not globally searchable.. [optional] # noqa: E501 + type (str): The type of the property. In case of collection properties the type is that of individual elements.. [optional] # noqa: E501 """ class_id = kwargs.get('class_id', "meta.PropDefinition") diff --git a/intersight/model/meta_relationship_definition.py b/intersight/model/meta_relationship_definition.py index 76add08391..b75e552916 100644 --- a/intersight/model/meta_relationship_definition.py +++ b/intersight/model/meta_relationship_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/meta_relationship_definition_all_of.py b/intersight/model/meta_relationship_definition_all_of.py index f7d4e07aba..1d20554a65 100644 --- a/intersight/model/meta_relationship_definition_all_of.py +++ b/intersight/model/meta_relationship_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/mo_aggregate_transform.py b/intersight/model/mo_aggregate_transform.py index 71c853506e..d986a46684 100644 --- a/intersight/model/mo_aggregate_transform.py +++ b/intersight/model/mo_aggregate_transform.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/mo_aggregate_transform_all_of.py b/intersight/model/mo_aggregate_transform_all_of.py index 268ec7d497..d3c9434e91 100644 --- a/intersight/model/mo_aggregate_transform_all_of.py +++ b/intersight/model/mo_aggregate_transform_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/mo_base_complex_type.py b/intersight/model/mo_base_complex_type.py index f290364c0e..a412202f05 100644 --- a/intersight/model/mo_base_complex_type.py +++ b/intersight/model/mo_base_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 """ @@ -100,6 +100,7 @@ def lazy_import(): from intersight.model.boot_usb import BootUsb from intersight.model.boot_virtual_media import BootVirtualMedia from intersight.model.bulk_api_result import BulkApiResult + from intersight.model.bulk_http_header import BulkHttpHeader from intersight.model.bulk_rest_result import BulkRestResult from intersight.model.bulk_rest_sub_request import BulkRestSubRequest from intersight.model.bulk_sub_request import BulkSubRequest @@ -142,7 +143,6 @@ def lazy_import(): from intersight.model.compute_storage_virtual_drive import ComputeStorageVirtualDrive from intersight.model.compute_storage_virtual_drive_operation import ComputeStorageVirtualDriveOperation from intersight.model.cond_alarm_summary import CondAlarmSummary - from intersight.model.config_mo_ref import ConfigMoRef from intersight.model.connector_auth_message import ConnectorAuthMessage from intersight.model.connector_base_message import ConnectorBaseMessage from intersight.model.connector_close_stream_message import ConnectorCloseStreamMessage @@ -285,6 +285,7 @@ def lazy_import(): from intersight.model.kubernetes_action_info import KubernetesActionInfo from intersight.model.kubernetes_addon import KubernetesAddon from intersight.model.kubernetes_addon_configuration import KubernetesAddonConfiguration + from intersight.model.kubernetes_baremetal_network_info import KubernetesBaremetalNetworkInfo from intersight.model.kubernetes_base_virtual_machine_infra_config import KubernetesBaseVirtualMachineInfraConfig from intersight.model.kubernetes_calico_config import KubernetesCalicoConfig from intersight.model.kubernetes_cluster_certificate_configuration import KubernetesClusterCertificateConfiguration @@ -295,10 +296,13 @@ def lazy_import(): from intersight.model.kubernetes_deployment_status import KubernetesDeploymentStatus from intersight.model.kubernetes_essential_addon import KubernetesEssentialAddon from intersight.model.kubernetes_esxi_virtual_machine_infra_config import KubernetesEsxiVirtualMachineInfraConfig + from intersight.model.kubernetes_ethernet import KubernetesEthernet + from intersight.model.kubernetes_ethernet_matcher import KubernetesEthernetMatcher from intersight.model.kubernetes_hyper_flex_ap_virtual_machine_infra_config import KubernetesHyperFlexApVirtualMachineInfraConfig from intersight.model.kubernetes_ingress_status import KubernetesIngressStatus from intersight.model.kubernetes_key_value import KubernetesKeyValue from intersight.model.kubernetes_load_balancer import KubernetesLoadBalancer + from intersight.model.kubernetes_network_interface import KubernetesNetworkInterface from intersight.model.kubernetes_node_address import KubernetesNodeAddress from intersight.model.kubernetes_node_group_label import KubernetesNodeGroupLabel from intersight.model.kubernetes_node_group_taint import KubernetesNodeGroupTaint @@ -306,6 +310,7 @@ def lazy_import(): from intersight.model.kubernetes_node_spec import KubernetesNodeSpec from intersight.model.kubernetes_node_status import KubernetesNodeStatus from intersight.model.kubernetes_object_meta import KubernetesObjectMeta + from intersight.model.kubernetes_ovs_bond import KubernetesOvsBond from intersight.model.kubernetes_pod_status import KubernetesPodStatus from intersight.model.kubernetes_proxy_config import KubernetesProxyConfig from intersight.model.kubernetes_service_status import KubernetesServiceStatus @@ -317,6 +322,7 @@ def lazy_import(): from intersight.model.memory_persistent_memory_logical_namespace import MemoryPersistentMemoryLogicalNamespace from intersight.model.meta_access_privilege import MetaAccessPrivilege from intersight.model.meta_display_name_definition import MetaDisplayNameDefinition + from intersight.model.meta_identity_definition import MetaIdentityDefinition from intersight.model.meta_prop_definition import MetaPropDefinition from intersight.model.meta_relationship_definition import MetaRelationshipDefinition from intersight.model.mo_version_context import MoVersionContext @@ -382,6 +388,10 @@ def lazy_import(): from intersight.model.resource_selector import ResourceSelector from intersight.model.resource_source_to_permission_resources import ResourceSourceToPermissionResources from intersight.model.resource_source_to_permission_resources_holder import ResourceSourceToPermissionResourcesHolder + from intersight.model.resourcepool_lease_parameters import ResourcepoolLeaseParameters + from intersight.model.resourcepool_resource_pool_parameters import ResourcepoolResourcePoolParameters + from intersight.model.resourcepool_server_lease_parameters import ResourcepoolServerLeaseParameters + from intersight.model.resourcepool_server_pool_parameters import ResourcepoolServerPoolParameters from intersight.model.sdcard_diagnostics import SdcardDiagnostics from intersight.model.sdcard_drivers import SdcardDrivers from intersight.model.sdcard_host_upgrade_utility import SdcardHostUpgradeUtility @@ -392,6 +402,7 @@ def lazy_import(): from intersight.model.sdcard_virtual_drive import SdcardVirtualDrive from intersight.model.sdwan_network_configuration_type import SdwanNetworkConfigurationType from intersight.model.sdwan_template_inputs_type import SdwanTemplateInputsType + from intersight.model.server_pending_workflow_trigger import ServerPendingWorkflowTrigger from intersight.model.snmp_trap import SnmpTrap from intersight.model.snmp_user import SnmpUser from intersight.model.softwarerepository_appliance_upload import SoftwarerepositoryApplianceUpload @@ -653,6 +664,7 @@ def lazy_import(): globals()['BootUsb'] = BootUsb globals()['BootVirtualMedia'] = BootVirtualMedia globals()['BulkApiResult'] = BulkApiResult + globals()['BulkHttpHeader'] = BulkHttpHeader globals()['BulkRestResult'] = BulkRestResult globals()['BulkRestSubRequest'] = BulkRestSubRequest globals()['BulkSubRequest'] = BulkSubRequest @@ -695,7 +707,6 @@ def lazy_import(): globals()['ComputeStorageVirtualDrive'] = ComputeStorageVirtualDrive globals()['ComputeStorageVirtualDriveOperation'] = ComputeStorageVirtualDriveOperation globals()['CondAlarmSummary'] = CondAlarmSummary - globals()['ConfigMoRef'] = ConfigMoRef globals()['ConnectorAuthMessage'] = ConnectorAuthMessage globals()['ConnectorBaseMessage'] = ConnectorBaseMessage globals()['ConnectorCloseStreamMessage'] = ConnectorCloseStreamMessage @@ -838,6 +849,7 @@ def lazy_import(): globals()['KubernetesActionInfo'] = KubernetesActionInfo globals()['KubernetesAddon'] = KubernetesAddon globals()['KubernetesAddonConfiguration'] = KubernetesAddonConfiguration + globals()['KubernetesBaremetalNetworkInfo'] = KubernetesBaremetalNetworkInfo globals()['KubernetesBaseVirtualMachineInfraConfig'] = KubernetesBaseVirtualMachineInfraConfig globals()['KubernetesCalicoConfig'] = KubernetesCalicoConfig globals()['KubernetesClusterCertificateConfiguration'] = KubernetesClusterCertificateConfiguration @@ -848,10 +860,13 @@ def lazy_import(): globals()['KubernetesDeploymentStatus'] = KubernetesDeploymentStatus globals()['KubernetesEssentialAddon'] = KubernetesEssentialAddon globals()['KubernetesEsxiVirtualMachineInfraConfig'] = KubernetesEsxiVirtualMachineInfraConfig + globals()['KubernetesEthernet'] = KubernetesEthernet + globals()['KubernetesEthernetMatcher'] = KubernetesEthernetMatcher globals()['KubernetesHyperFlexApVirtualMachineInfraConfig'] = KubernetesHyperFlexApVirtualMachineInfraConfig globals()['KubernetesIngressStatus'] = KubernetesIngressStatus globals()['KubernetesKeyValue'] = KubernetesKeyValue globals()['KubernetesLoadBalancer'] = KubernetesLoadBalancer + globals()['KubernetesNetworkInterface'] = KubernetesNetworkInterface globals()['KubernetesNodeAddress'] = KubernetesNodeAddress globals()['KubernetesNodeGroupLabel'] = KubernetesNodeGroupLabel globals()['KubernetesNodeGroupTaint'] = KubernetesNodeGroupTaint @@ -859,6 +874,7 @@ def lazy_import(): globals()['KubernetesNodeSpec'] = KubernetesNodeSpec globals()['KubernetesNodeStatus'] = KubernetesNodeStatus globals()['KubernetesObjectMeta'] = KubernetesObjectMeta + globals()['KubernetesOvsBond'] = KubernetesOvsBond globals()['KubernetesPodStatus'] = KubernetesPodStatus globals()['KubernetesProxyConfig'] = KubernetesProxyConfig globals()['KubernetesServiceStatus'] = KubernetesServiceStatus @@ -870,6 +886,7 @@ def lazy_import(): globals()['MemoryPersistentMemoryLogicalNamespace'] = MemoryPersistentMemoryLogicalNamespace globals()['MetaAccessPrivilege'] = MetaAccessPrivilege globals()['MetaDisplayNameDefinition'] = MetaDisplayNameDefinition + globals()['MetaIdentityDefinition'] = MetaIdentityDefinition globals()['MetaPropDefinition'] = MetaPropDefinition globals()['MetaRelationshipDefinition'] = MetaRelationshipDefinition globals()['MoVersionContext'] = MoVersionContext @@ -935,6 +952,10 @@ def lazy_import(): globals()['ResourceSelector'] = ResourceSelector globals()['ResourceSourceToPermissionResources'] = ResourceSourceToPermissionResources globals()['ResourceSourceToPermissionResourcesHolder'] = ResourceSourceToPermissionResourcesHolder + globals()['ResourcepoolLeaseParameters'] = ResourcepoolLeaseParameters + globals()['ResourcepoolResourcePoolParameters'] = ResourcepoolResourcePoolParameters + globals()['ResourcepoolServerLeaseParameters'] = ResourcepoolServerLeaseParameters + globals()['ResourcepoolServerPoolParameters'] = ResourcepoolServerPoolParameters globals()['SdcardDiagnostics'] = SdcardDiagnostics globals()['SdcardDrivers'] = SdcardDrivers globals()['SdcardHostUpgradeUtility'] = SdcardHostUpgradeUtility @@ -945,6 +966,7 @@ def lazy_import(): globals()['SdcardVirtualDrive'] = SdcardVirtualDrive globals()['SdwanNetworkConfigurationType'] = SdwanNetworkConfigurationType globals()['SdwanTemplateInputsType'] = SdwanTemplateInputsType + globals()['ServerPendingWorkflowTrigger'] = ServerPendingWorkflowTrigger globals()['SnmpTrap'] = SnmpTrap globals()['SnmpUser'] = SnmpUser globals()['SoftwarerepositoryApplianceUpload'] = SoftwarerepositoryApplianceUpload @@ -1226,6 +1248,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1266,7 +1289,6 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1402,6 +1424,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1410,6 +1433,8 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1421,6 +1446,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1432,6 +1458,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1489,6 +1516,8 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1498,6 +1527,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1733,6 +1763,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1773,7 +1804,6 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1909,6 +1939,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1917,6 +1948,8 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1928,6 +1961,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1939,6 +1973,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -1996,6 +2031,8 @@ class MoBaseComplexType(ModelNormal): '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", @@ -2005,6 +2042,7 @@ class MoBaseComplexType(ModelNormal): '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", @@ -2276,6 +2314,7 @@ def discriminator(): 'boot.Usb': BootUsb, 'boot.VirtualMedia': BootVirtualMedia, 'bulk.ApiResult': BulkApiResult, + 'bulk.HttpHeader': BulkHttpHeader, 'bulk.RestResult': BulkRestResult, 'bulk.RestSubRequest': BulkRestSubRequest, 'bulk.SubRequest': BulkSubRequest, @@ -2318,7 +2357,6 @@ def discriminator(): 'compute.StorageVirtualDrive': ComputeStorageVirtualDrive, 'compute.StorageVirtualDriveOperation': ComputeStorageVirtualDriveOperation, 'cond.AlarmSummary': CondAlarmSummary, - 'config.MoRef': ConfigMoRef, 'connector.AuthMessage': ConnectorAuthMessage, 'connector.BaseMessage': ConnectorBaseMessage, 'connector.CloseStreamMessage': ConnectorCloseStreamMessage, @@ -2461,6 +2499,7 @@ def discriminator(): 'kubernetes.ActionInfo': KubernetesActionInfo, 'kubernetes.Addon': KubernetesAddon, 'kubernetes.AddonConfiguration': KubernetesAddonConfiguration, + 'kubernetes.BaremetalNetworkInfo': KubernetesBaremetalNetworkInfo, 'kubernetes.BaseVirtualMachineInfraConfig': KubernetesBaseVirtualMachineInfraConfig, 'kubernetes.CalicoConfig': KubernetesCalicoConfig, 'kubernetes.ClusterCertificateConfiguration': KubernetesClusterCertificateConfiguration, @@ -2471,10 +2510,13 @@ def discriminator(): 'kubernetes.DeploymentStatus': KubernetesDeploymentStatus, 'kubernetes.EssentialAddon': KubernetesEssentialAddon, 'kubernetes.EsxiVirtualMachineInfraConfig': KubernetesEsxiVirtualMachineInfraConfig, + 'kubernetes.Ethernet': KubernetesEthernet, + 'kubernetes.EthernetMatcher': KubernetesEthernetMatcher, 'kubernetes.HyperFlexApVirtualMachineInfraConfig': KubernetesHyperFlexApVirtualMachineInfraConfig, 'kubernetes.IngressStatus': KubernetesIngressStatus, 'kubernetes.KeyValue': KubernetesKeyValue, 'kubernetes.LoadBalancer': KubernetesLoadBalancer, + 'kubernetes.NetworkInterface': KubernetesNetworkInterface, 'kubernetes.NodeAddress': KubernetesNodeAddress, 'kubernetes.NodeGroupLabel': KubernetesNodeGroupLabel, 'kubernetes.NodeGroupTaint': KubernetesNodeGroupTaint, @@ -2482,6 +2524,7 @@ def discriminator(): 'kubernetes.NodeSpec': KubernetesNodeSpec, 'kubernetes.NodeStatus': KubernetesNodeStatus, 'kubernetes.ObjectMeta': KubernetesObjectMeta, + 'kubernetes.OvsBond': KubernetesOvsBond, 'kubernetes.PodStatus': KubernetesPodStatus, 'kubernetes.ProxyConfig': KubernetesProxyConfig, 'kubernetes.ServiceStatus': KubernetesServiceStatus, @@ -2493,6 +2536,7 @@ def discriminator(): 'memory.PersistentMemoryLogicalNamespace': MemoryPersistentMemoryLogicalNamespace, 'meta.AccessPrivilege': MetaAccessPrivilege, 'meta.DisplayNameDefinition': MetaDisplayNameDefinition, + 'meta.IdentityDefinition': MetaIdentityDefinition, 'meta.PropDefinition': MetaPropDefinition, 'meta.RelationshipDefinition': MetaRelationshipDefinition, 'mo.VersionContext': MoVersionContext, @@ -2558,6 +2602,10 @@ def discriminator(): 'resource.Selector': ResourceSelector, 'resource.SourceToPermissionResources': ResourceSourceToPermissionResources, 'resource.SourceToPermissionResourcesHolder': ResourceSourceToPermissionResourcesHolder, + 'resourcepool.LeaseParameters': ResourcepoolLeaseParameters, + 'resourcepool.ResourcePoolParameters': ResourcepoolResourcePoolParameters, + 'resourcepool.ServerLeaseParameters': ResourcepoolServerLeaseParameters, + 'resourcepool.ServerPoolParameters': ResourcepoolServerPoolParameters, 'sdcard.Diagnostics': SdcardDiagnostics, 'sdcard.Drivers': SdcardDrivers, 'sdcard.HostUpgradeUtility': SdcardHostUpgradeUtility, @@ -2568,6 +2616,7 @@ def discriminator(): 'sdcard.VirtualDrive': SdcardVirtualDrive, 'sdwan.NetworkConfigurationType': SdwanNetworkConfigurationType, 'sdwan.TemplateInputsType': SdwanTemplateInputsType, + 'server.PendingWorkflowTrigger': ServerPendingWorkflowTrigger, 'snmp.Trap': SnmpTrap, 'snmp.User': SnmpUser, 'softwarerepository.ApplianceUpload': SoftwarerepositoryApplianceUpload, diff --git a/intersight/model/mo_base_mo.py b/intersight/model/mo_base_mo.py index 462303f918..79b239cea4 100644 --- a/intersight/model/mo_base_mo.py +++ b/intersight/model/mo_base_mo.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 @@ def lazy_import(): from intersight.model.aaa_abstract_audit_record import AaaAbstractAuditRecord from intersight.model.aaa_audit_record import AaaAuditRecord + from intersight.model.aaa_retention_config import AaaRetentionConfig + from intersight.model.aaa_retention_policy import AaaRetentionPolicy from intersight.model.access_policy import AccessPolicy from intersight.model.adapter_config_policy import AdapterConfigPolicy from intersight.model.adapter_ext_eth_interface import AdapterExtEthInterface @@ -47,6 +49,7 @@ def lazy_import(): from intersight.model.appliance_data_export_policy import ApplianceDataExportPolicy from intersight.model.appliance_device_certificate import ApplianceDeviceCertificate from intersight.model.appliance_device_claim import ApplianceDeviceClaim + from intersight.model.appliance_device_upgrade_policy import ApplianceDeviceUpgradePolicy from intersight.model.appliance_diag_setting import ApplianceDiagSetting from intersight.model.appliance_external_syslog_setting import ApplianceExternalSyslogSetting from intersight.model.appliance_file_system_status import ApplianceFileSystemStatus @@ -97,9 +100,12 @@ def lazy_import(): from intersight.model.boot_uefi_shell_device import BootUefiShellDevice from intersight.model.boot_usb_device import BootUsbDevice from intersight.model.boot_vmedia_device import BootVmediaDevice + from intersight.model.bulk_export import BulkExport + from intersight.model.bulk_exported_item import BulkExportedItem 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_sub_request_obj import BulkSubRequestObj from intersight.model.capability_adapter_unit_descriptor import CapabilityAdapterUnitDescriptor from intersight.model.capability_capability import CapabilityCapability from intersight.model.capability_catalog import CapabilityCatalog @@ -177,10 +183,6 @@ def lazy_import(): from intersight.model.cond_hcl_status import CondHclStatus from intersight.model.cond_hcl_status_detail import CondHclStatusDetail from intersight.model.cond_hcl_status_job import CondHclStatusJob - from intersight.model.config_exported_item import ConfigExportedItem - from intersight.model.config_exporter import ConfigExporter - from intersight.model.config_imported_item import ConfigImportedItem - from intersight.model.config_importer import ConfigImporter from intersight.model.connector_download_status import ConnectorDownloadStatus from intersight.model.connector_scoped_inventory import ConnectorScopedInventory from intersight.model.connectorpack_connector_pack_upgrade import ConnectorpackConnectorPackUpgrade @@ -194,6 +196,7 @@ def lazy_import(): from intersight.model.equipment_chassis_identity import EquipmentChassisIdentity from intersight.model.equipment_chassis_operation import EquipmentChassisOperation from intersight.model.equipment_device_summary import EquipmentDeviceSummary + 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 @@ -464,6 +467,7 @@ def lazy_import(): from intersight.model.kubernetes_addon_definition import KubernetesAddonDefinition from intersight.model.kubernetes_addon_policy import KubernetesAddonPolicy from intersight.model.kubernetes_addon_repository import KubernetesAddonRepository + from intersight.model.kubernetes_baremetal_node_profile import KubernetesBaremetalNodeProfile from intersight.model.kubernetes_base_infrastructure_provider import KubernetesBaseInfrastructureProvider from intersight.model.kubernetes_catalog import KubernetesCatalog from intersight.model.kubernetes_cluster import KubernetesCluster @@ -666,6 +670,11 @@ def lazy_import(): from intersight.model.resource_license_resource_count import ResourceLicenseResourceCount from intersight.model.resource_membership import ResourceMembership from intersight.model.resource_membership_holder import ResourceMembershipHolder + from intersight.model.resourcepool_lease import ResourcepoolLease + from intersight.model.resourcepool_lease_resource import ResourcepoolLeaseResource + from intersight.model.resourcepool_pool import ResourcepoolPool + from intersight.model.resourcepool_pool_member import ResourcepoolPoolMember + from intersight.model.resourcepool_universe import ResourcepoolUniverse from intersight.model.rproxy_reverse_proxy import RproxyReverseProxy from intersight.model.sdcard_policy import SdcardPolicy from intersight.model.sdwan_profile import SdwanProfile @@ -804,6 +813,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 from intersight.model.techsupportmanagement_collection_control_policy import TechsupportmanagementCollectionControlPolicy from intersight.model.techsupportmanagement_download import TechsupportmanagementDownload from intersight.model.techsupportmanagement_tech_support_bundle import TechsupportmanagementTechSupportBundle @@ -837,6 +847,7 @@ def lazy_import(): from intersight.model.virtualization_base_switch import VirtualizationBaseSwitch from intersight.model.virtualization_base_virtual_disk import VirtualizationBaseVirtualDisk from intersight.model.virtualization_base_virtual_machine import VirtualizationBaseVirtualMachine + from intersight.model.virtualization_base_virtual_machine_snapshot import VirtualizationBaseVirtualMachineSnapshot from intersight.model.virtualization_base_virtual_network import VirtualizationBaseVirtualNetwork from intersight.model.virtualization_base_virtual_network_interface import VirtualizationBaseVirtualNetworkInterface from intersight.model.virtualization_base_virtual_network_interface_card import VirtualizationBaseVirtualNetworkInterfaceCard @@ -860,6 +871,7 @@ def lazy_import(): from intersight.model.virtualization_vmware_vcenter import VirtualizationVmwareVcenter from intersight.model.virtualization_vmware_virtual_disk import VirtualizationVmwareVirtualDisk from intersight.model.virtualization_vmware_virtual_machine import VirtualizationVmwareVirtualMachine + from intersight.model.virtualization_vmware_virtual_machine_snapshot import VirtualizationVmwareVirtualMachineSnapshot from intersight.model.virtualization_vmware_virtual_network_interface import VirtualizationVmwareVirtualNetworkInterface from intersight.model.virtualization_vmware_virtual_switch import VirtualizationVmwareVirtualSwitch from intersight.model.vmedia_policy import VmediaPolicy @@ -892,14 +904,18 @@ def lazy_import(): from intersight.model.workflow_task_definition import WorkflowTaskDefinition from intersight.model.workflow_task_info import WorkflowTaskInfo from intersight.model.workflow_task_metadata import WorkflowTaskMetadata + 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_workflow_definition import WorkflowWorkflowDefinition from intersight.model.workflow_workflow_info import WorkflowWorkflowInfo from intersight.model.workflow_workflow_meta import WorkflowWorkflowMeta from intersight.model.workflow_workflow_metadata import WorkflowWorkflowMetadata + from intersight.model.workflow_workflow_notification import WorkflowWorkflowNotification globals()['AaaAbstractAuditRecord'] = AaaAbstractAuditRecord globals()['AaaAuditRecord'] = AaaAuditRecord + globals()['AaaRetentionConfig'] = AaaRetentionConfig + globals()['AaaRetentionPolicy'] = AaaRetentionPolicy globals()['AccessPolicy'] = AccessPolicy globals()['AdapterConfigPolicy'] = AdapterConfigPolicy globals()['AdapterExtEthInterface'] = AdapterExtEthInterface @@ -917,6 +933,7 @@ def lazy_import(): globals()['ApplianceDataExportPolicy'] = ApplianceDataExportPolicy globals()['ApplianceDeviceCertificate'] = ApplianceDeviceCertificate globals()['ApplianceDeviceClaim'] = ApplianceDeviceClaim + globals()['ApplianceDeviceUpgradePolicy'] = ApplianceDeviceUpgradePolicy globals()['ApplianceDiagSetting'] = ApplianceDiagSetting globals()['ApplianceExternalSyslogSetting'] = ApplianceExternalSyslogSetting globals()['ApplianceFileSystemStatus'] = ApplianceFileSystemStatus @@ -967,9 +984,12 @@ def lazy_import(): globals()['BootUefiShellDevice'] = BootUefiShellDevice globals()['BootUsbDevice'] = BootUsbDevice globals()['BootVmediaDevice'] = BootVmediaDevice + globals()['BulkExport'] = BulkExport + globals()['BulkExportedItem'] = BulkExportedItem globals()['BulkMoCloner'] = BulkMoCloner globals()['BulkMoMerger'] = BulkMoMerger globals()['BulkRequest'] = BulkRequest + globals()['BulkSubRequestObj'] = BulkSubRequestObj globals()['CapabilityAdapterUnitDescriptor'] = CapabilityAdapterUnitDescriptor globals()['CapabilityCapability'] = CapabilityCapability globals()['CapabilityCatalog'] = CapabilityCatalog @@ -1047,10 +1067,6 @@ def lazy_import(): globals()['CondHclStatus'] = CondHclStatus globals()['CondHclStatusDetail'] = CondHclStatusDetail globals()['CondHclStatusJob'] = CondHclStatusJob - globals()['ConfigExportedItem'] = ConfigExportedItem - globals()['ConfigExporter'] = ConfigExporter - globals()['ConfigImportedItem'] = ConfigImportedItem - globals()['ConfigImporter'] = ConfigImporter globals()['ConnectorDownloadStatus'] = ConnectorDownloadStatus globals()['ConnectorScopedInventory'] = ConnectorScopedInventory globals()['ConnectorpackConnectorPackUpgrade'] = ConnectorpackConnectorPackUpgrade @@ -1064,6 +1080,7 @@ def lazy_import(): globals()['EquipmentChassisIdentity'] = EquipmentChassisIdentity globals()['EquipmentChassisOperation'] = EquipmentChassisOperation globals()['EquipmentDeviceSummary'] = EquipmentDeviceSummary + globals()['EquipmentExpanderModule'] = EquipmentExpanderModule globals()['EquipmentFan'] = EquipmentFan globals()['EquipmentFanControl'] = EquipmentFanControl globals()['EquipmentFanModule'] = EquipmentFanModule @@ -1334,6 +1351,7 @@ def lazy_import(): globals()['KubernetesAddonDefinition'] = KubernetesAddonDefinition globals()['KubernetesAddonPolicy'] = KubernetesAddonPolicy globals()['KubernetesAddonRepository'] = KubernetesAddonRepository + globals()['KubernetesBaremetalNodeProfile'] = KubernetesBaremetalNodeProfile globals()['KubernetesBaseInfrastructureProvider'] = KubernetesBaseInfrastructureProvider globals()['KubernetesCatalog'] = KubernetesCatalog globals()['KubernetesCluster'] = KubernetesCluster @@ -1536,6 +1554,11 @@ def lazy_import(): globals()['ResourceLicenseResourceCount'] = ResourceLicenseResourceCount globals()['ResourceMembership'] = ResourceMembership globals()['ResourceMembershipHolder'] = ResourceMembershipHolder + globals()['ResourcepoolLease'] = ResourcepoolLease + globals()['ResourcepoolLeaseResource'] = ResourcepoolLeaseResource + globals()['ResourcepoolPool'] = ResourcepoolPool + globals()['ResourcepoolPoolMember'] = ResourcepoolPoolMember + globals()['ResourcepoolUniverse'] = ResourcepoolUniverse globals()['RproxyReverseProxy'] = RproxyReverseProxy globals()['SdcardPolicy'] = SdcardPolicy globals()['SdwanProfile'] = SdwanProfile @@ -1674,6 +1697,7 @@ def lazy_import(): globals()['TaskNetAppScopedInventory'] = TaskNetAppScopedInventory globals()['TaskPublicCloudScopedInventory'] = TaskPublicCloudScopedInventory globals()['TaskPureScopedInventory'] = TaskPureScopedInventory + globals()['TaskServerScopedInventory'] = TaskServerScopedInventory globals()['TechsupportmanagementCollectionControlPolicy'] = TechsupportmanagementCollectionControlPolicy globals()['TechsupportmanagementDownload'] = TechsupportmanagementDownload globals()['TechsupportmanagementTechSupportBundle'] = TechsupportmanagementTechSupportBundle @@ -1707,6 +1731,7 @@ def lazy_import(): globals()['VirtualizationBaseSwitch'] = VirtualizationBaseSwitch globals()['VirtualizationBaseVirtualDisk'] = VirtualizationBaseVirtualDisk globals()['VirtualizationBaseVirtualMachine'] = VirtualizationBaseVirtualMachine + globals()['VirtualizationBaseVirtualMachineSnapshot'] = VirtualizationBaseVirtualMachineSnapshot globals()['VirtualizationBaseVirtualNetwork'] = VirtualizationBaseVirtualNetwork globals()['VirtualizationBaseVirtualNetworkInterface'] = VirtualizationBaseVirtualNetworkInterface globals()['VirtualizationBaseVirtualNetworkInterfaceCard'] = VirtualizationBaseVirtualNetworkInterfaceCard @@ -1730,6 +1755,7 @@ def lazy_import(): globals()['VirtualizationVmwareVcenter'] = VirtualizationVmwareVcenter globals()['VirtualizationVmwareVirtualDisk'] = VirtualizationVmwareVirtualDisk globals()['VirtualizationVmwareVirtualMachine'] = VirtualizationVmwareVirtualMachine + globals()['VirtualizationVmwareVirtualMachineSnapshot'] = VirtualizationVmwareVirtualMachineSnapshot globals()['VirtualizationVmwareVirtualNetworkInterface'] = VirtualizationVmwareVirtualNetworkInterface globals()['VirtualizationVmwareVirtualSwitch'] = VirtualizationVmwareVirtualSwitch globals()['VmediaPolicy'] = VmediaPolicy @@ -1762,12 +1788,14 @@ def lazy_import(): globals()['WorkflowTaskDefinition'] = WorkflowTaskDefinition globals()['WorkflowTaskInfo'] = WorkflowTaskInfo globals()['WorkflowTaskMetadata'] = WorkflowTaskMetadata + globals()['WorkflowTaskNotification'] = WorkflowTaskNotification globals()['WorkflowTemplateEvaluation'] = WorkflowTemplateEvaluation globals()['WorkflowTemplateFunctionMeta'] = WorkflowTemplateFunctionMeta globals()['WorkflowWorkflowDefinition'] = WorkflowWorkflowDefinition globals()['WorkflowWorkflowInfo'] = WorkflowWorkflowInfo globals()['WorkflowWorkflowMeta'] = WorkflowWorkflowMeta globals()['WorkflowWorkflowMetadata'] = WorkflowWorkflowMetadata + globals()['WorkflowWorkflowNotification'] = WorkflowWorkflowNotification class MoBaseMo(ModelNormal): @@ -1797,6 +1825,8 @@ class MoBaseMo(ModelNormal): allowed_values = { ('class_id',): { 'AAA.AUDITRECORD': "aaa.AuditRecord", + 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig", + 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy", 'ACCESS.POLICY': "access.Policy", 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy", 'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface", @@ -1813,6 +1843,7 @@ class MoBaseMo(ModelNormal): '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", @@ -1861,9 +1892,12 @@ class MoBaseMo(ModelNormal): '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", @@ -1927,10 +1961,6 @@ class MoBaseMo(ModelNormal): '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", @@ -1939,6 +1969,7 @@ class MoBaseMo(ModelNormal): '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", @@ -2187,6 +2218,7 @@ class MoBaseMo(ModelNormal): '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", @@ -2356,6 +2388,11 @@ class MoBaseMo(ModelNormal): '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", @@ -2471,6 +2508,7 @@ class MoBaseMo(ModelNormal): '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", @@ -2502,6 +2540,7 @@ class MoBaseMo(ModelNormal): '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", @@ -2534,15 +2573,19 @@ class MoBaseMo(ModelNormal): '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", }, ('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", @@ -2559,6 +2602,7 @@ class MoBaseMo(ModelNormal): '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", @@ -2607,9 +2651,12 @@ class MoBaseMo(ModelNormal): '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", @@ -2673,10 +2720,6 @@ class MoBaseMo(ModelNormal): '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", @@ -2685,6 +2728,7 @@ class MoBaseMo(ModelNormal): '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", @@ -2933,6 +2977,7 @@ class MoBaseMo(ModelNormal): '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", @@ -3102,6 +3147,11 @@ class MoBaseMo(ModelNormal): '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", @@ -3217,6 +3267,7 @@ class MoBaseMo(ModelNormal): '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", @@ -3248,6 +3299,7 @@ class MoBaseMo(ModelNormal): '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", @@ -3280,12 +3332,14 @@ class MoBaseMo(ModelNormal): '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", }, } @@ -3331,6 +3385,8 @@ def discriminator(): val = { 'aaa.AbstractAuditRecord': AaaAbstractAuditRecord, 'aaa.AuditRecord': AaaAuditRecord, + 'aaa.RetentionConfig': AaaRetentionConfig, + 'aaa.RetentionPolicy': AaaRetentionPolicy, 'access.Policy': AccessPolicy, 'adapter.ConfigPolicy': AdapterConfigPolicy, 'adapter.ExtEthInterface': AdapterExtEthInterface, @@ -3348,6 +3404,7 @@ def discriminator(): 'appliance.DataExportPolicy': ApplianceDataExportPolicy, 'appliance.DeviceCertificate': ApplianceDeviceCertificate, 'appliance.DeviceClaim': ApplianceDeviceClaim, + 'appliance.DeviceUpgradePolicy': ApplianceDeviceUpgradePolicy, 'appliance.DiagSetting': ApplianceDiagSetting, 'appliance.ExternalSyslogSetting': ApplianceExternalSyslogSetting, 'appliance.FileSystemStatus': ApplianceFileSystemStatus, @@ -3398,9 +3455,12 @@ def discriminator(): 'boot.UefiShellDevice': BootUefiShellDevice, 'boot.UsbDevice': BootUsbDevice, 'boot.VmediaDevice': BootVmediaDevice, + 'bulk.Export': BulkExport, + 'bulk.ExportedItem': BulkExportedItem, 'bulk.MoCloner': BulkMoCloner, 'bulk.MoMerger': BulkMoMerger, 'bulk.Request': BulkRequest, + 'bulk.SubRequestObj': BulkSubRequestObj, 'capability.AdapterUnitDescriptor': CapabilityAdapterUnitDescriptor, 'capability.Capability': CapabilityCapability, 'capability.Catalog': CapabilityCatalog, @@ -3478,10 +3538,6 @@ def discriminator(): 'cond.HclStatus': CondHclStatus, 'cond.HclStatusDetail': CondHclStatusDetail, 'cond.HclStatusJob': CondHclStatusJob, - 'config.ExportedItem': ConfigExportedItem, - 'config.Exporter': ConfigExporter, - 'config.ImportedItem': ConfigImportedItem, - 'config.Importer': ConfigImporter, 'connector.DownloadStatus': ConnectorDownloadStatus, 'connector.ScopedInventory': ConnectorScopedInventory, 'connectorpack.ConnectorPackUpgrade': ConnectorpackConnectorPackUpgrade, @@ -3494,6 +3550,7 @@ def discriminator(): 'equipment.ChassisIdentity': EquipmentChassisIdentity, 'equipment.ChassisOperation': EquipmentChassisOperation, 'equipment.DeviceSummary': EquipmentDeviceSummary, + 'equipment.ExpanderModule': EquipmentExpanderModule, 'equipment.Fan': EquipmentFan, 'equipment.FanControl': EquipmentFanControl, 'equipment.FanModule': EquipmentFanModule, @@ -3764,6 +3821,7 @@ def discriminator(): 'kubernetes.AddonDefinition': KubernetesAddonDefinition, 'kubernetes.AddonPolicy': KubernetesAddonPolicy, 'kubernetes.AddonRepository': KubernetesAddonRepository, + 'kubernetes.BaremetalNodeProfile': KubernetesBaremetalNodeProfile, 'kubernetes.BaseInfrastructureProvider': KubernetesBaseInfrastructureProvider, 'kubernetes.Catalog': KubernetesCatalog, 'kubernetes.Cluster': KubernetesCluster, @@ -3963,6 +4021,11 @@ def discriminator(): 'resource.LicenseResourceCount': ResourceLicenseResourceCount, 'resource.Membership': ResourceMembership, 'resource.MembershipHolder': ResourceMembershipHolder, + 'resourcepool.Lease': ResourcepoolLease, + 'resourcepool.LeaseResource': ResourcepoolLeaseResource, + 'resourcepool.Pool': ResourcepoolPool, + 'resourcepool.PoolMember': ResourcepoolPoolMember, + 'resourcepool.Universe': ResourcepoolUniverse, 'rproxy.ReverseProxy': RproxyReverseProxy, 'sdcard.Policy': SdcardPolicy, 'sdwan.Profile': SdwanProfile, @@ -4101,6 +4164,7 @@ def discriminator(): 'task.NetAppScopedInventory': TaskNetAppScopedInventory, 'task.PublicCloudScopedInventory': TaskPublicCloudScopedInventory, 'task.PureScopedInventory': TaskPureScopedInventory, + 'task.ServerScopedInventory': TaskServerScopedInventory, 'techsupportmanagement.CollectionControlPolicy': TechsupportmanagementCollectionControlPolicy, 'techsupportmanagement.Download': TechsupportmanagementDownload, 'techsupportmanagement.TechSupportBundle': TechsupportmanagementTechSupportBundle, @@ -4134,6 +4198,7 @@ def discriminator(): 'virtualization.BaseSwitch': VirtualizationBaseSwitch, 'virtualization.BaseVirtualDisk': VirtualizationBaseVirtualDisk, 'virtualization.BaseVirtualMachine': VirtualizationBaseVirtualMachine, + 'virtualization.BaseVirtualMachineSnapshot': VirtualizationBaseVirtualMachineSnapshot, 'virtualization.BaseVirtualNetwork': VirtualizationBaseVirtualNetwork, 'virtualization.BaseVirtualNetworkInterface': VirtualizationBaseVirtualNetworkInterface, 'virtualization.BaseVirtualNetworkInterfaceCard': VirtualizationBaseVirtualNetworkInterfaceCard, @@ -4157,6 +4222,7 @@ def discriminator(): 'virtualization.VmwareVcenter': VirtualizationVmwareVcenter, 'virtualization.VmwareVirtualDisk': VirtualizationVmwareVirtualDisk, 'virtualization.VmwareVirtualMachine': VirtualizationVmwareVirtualMachine, + 'virtualization.VmwareVirtualMachineSnapshot': VirtualizationVmwareVirtualMachineSnapshot, 'virtualization.VmwareVirtualNetworkInterface': VirtualizationVmwareVirtualNetworkInterface, 'virtualization.VmwareVirtualSwitch': VirtualizationVmwareVirtualSwitch, 'vmedia.Policy': VmediaPolicy, @@ -4189,12 +4255,14 @@ def discriminator(): 'workflow.TaskDefinition': WorkflowTaskDefinition, 'workflow.TaskInfo': WorkflowTaskInfo, 'workflow.TaskMetadata': WorkflowTaskMetadata, + 'workflow.TaskNotification': WorkflowTaskNotification, 'workflow.TemplateEvaluation': WorkflowTemplateEvaluation, 'workflow.TemplateFunctionMeta': WorkflowTemplateFunctionMeta, 'workflow.WorkflowDefinition': WorkflowWorkflowDefinition, 'workflow.WorkflowInfo': WorkflowWorkflowInfo, 'workflow.WorkflowMeta': WorkflowWorkflowMeta, 'workflow.WorkflowMetadata': WorkflowWorkflowMetadata, + 'workflow.WorkflowNotification': WorkflowWorkflowNotification, } if not val: return None diff --git a/intersight/model/mo_base_mo_relationship.py b/intersight/model/mo_base_mo_relationship.py index 6a02342ab4..0951119157 100644 --- a/intersight/model/mo_base_mo_relationship.py +++ b/intersight/model/mo_base_mo_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 """ @@ -70,6 +70,8 @@ class MoBaseMoRelationship(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", @@ -86,6 +88,7 @@ class MoBaseMoRelationship(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", @@ -134,9 +137,12 @@ class MoBaseMoRelationship(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", @@ -200,10 +206,6 @@ class MoBaseMoRelationship(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", @@ -212,6 +214,7 @@ class MoBaseMoRelationship(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", @@ -460,6 +463,7 @@ class MoBaseMoRelationship(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", @@ -629,6 +633,11 @@ class MoBaseMoRelationship(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", @@ -744,6 +753,7 @@ class MoBaseMoRelationship(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", @@ -775,6 +785,7 @@ class MoBaseMoRelationship(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", @@ -807,12 +818,14 @@ class MoBaseMoRelationship(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/mo_base_response.py b/intersight/model/mo_base_response.py index 45f4187484..7e65c2ca03 100644 --- a/intersight/model/mo_base_response.py +++ b/intersight/model/mo_base_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 """ @@ -29,6 +29,8 @@ def lazy_import(): from intersight.model.aaa_audit_record_list import AaaAuditRecordList + from intersight.model.aaa_retention_config_list import AaaRetentionConfigList + from intersight.model.aaa_retention_policy_list import AaaRetentionPolicyList from intersight.model.access_policy_list import AccessPolicyList from intersight.model.adapter_config_policy_list import AdapterConfigPolicyList from intersight.model.adapter_ext_eth_interface_list import AdapterExtEthInterfaceList @@ -45,6 +47,7 @@ def lazy_import(): from intersight.model.appliance_data_export_policy_list import ApplianceDataExportPolicyList from intersight.model.appliance_device_certificate_list import ApplianceDeviceCertificateList from intersight.model.appliance_device_claim_list import ApplianceDeviceClaimList + from intersight.model.appliance_device_upgrade_policy_list import ApplianceDeviceUpgradePolicyList from intersight.model.appliance_diag_setting_list import ApplianceDiagSettingList from intersight.model.appliance_external_syslog_setting_list import ApplianceExternalSyslogSettingList from intersight.model.appliance_file_system_status_list import ApplianceFileSystemStatusList @@ -92,6 +95,10 @@ def lazy_import(): from intersight.model.boot_uefi_shell_device_list import BootUefiShellDeviceList from intersight.model.boot_usb_device_list import BootUsbDeviceList from intersight.model.boot_vmedia_device_list import BootVmediaDeviceList + from intersight.model.bulk_export_list import BulkExportList + from intersight.model.bulk_exported_item_list import BulkExportedItemList + from intersight.model.bulk_request_list import BulkRequestList + from intersight.model.bulk_sub_request_obj_list import BulkSubRequestObjList from intersight.model.capability_adapter_unit_descriptor_list import CapabilityAdapterUnitDescriptorList from intersight.model.capability_catalog_list import CapabilityCatalogList from intersight.model.capability_chassis_descriptor_list import CapabilityChassisDescriptorList @@ -154,10 +161,6 @@ def lazy_import(): from intersight.model.cond_hcl_status_detail_list import CondHclStatusDetailList from intersight.model.cond_hcl_status_job_list import CondHclStatusJobList from intersight.model.cond_hcl_status_list import CondHclStatusList - from intersight.model.config_exported_item_list import ConfigExportedItemList - from intersight.model.config_exporter_list import ConfigExporterList - from intersight.model.config_imported_item_list import ConfigImportedItemList - from intersight.model.config_importer_list import ConfigImporterList from intersight.model.connectorpack_connector_pack_upgrade_list import ConnectorpackConnectorPackUpgradeList from intersight.model.connectorpack_upgrade_impact_list import ConnectorpackUpgradeImpactList from intersight.model.crd_custom_resource_list import CrdCustomResourceList @@ -166,6 +169,7 @@ def lazy_import(): from intersight.model.equipment_chassis_list import EquipmentChassisList from intersight.model.equipment_chassis_operation_list import EquipmentChassisOperationList from intersight.model.equipment_device_summary_list import EquipmentDeviceSummaryList + from intersight.model.equipment_expander_module_list import EquipmentExpanderModuleList from intersight.model.equipment_fan_control_list import EquipmentFanControlList from intersight.model.equipment_fan_list import EquipmentFanList from intersight.model.equipment_fan_module_list import EquipmentFanModuleList @@ -407,6 +411,7 @@ def lazy_import(): from intersight.model.kubernetes_addon_definition_list import KubernetesAddonDefinitionList from intersight.model.kubernetes_addon_policy_list import KubernetesAddonPolicyList from intersight.model.kubernetes_addon_repository_list import KubernetesAddonRepositoryList + from intersight.model.kubernetes_baremetal_node_profile_list import KubernetesBaremetalNodeProfileList from intersight.model.kubernetes_catalog_list import KubernetesCatalogList from intersight.model.kubernetes_cluster_addon_profile_list import KubernetesClusterAddonProfileList from intersight.model.kubernetes_cluster_list import KubernetesClusterList @@ -576,6 +581,11 @@ def lazy_import(): from intersight.model.resource_license_resource_count_list import ResourceLicenseResourceCountList from intersight.model.resource_membership_holder_list import ResourceMembershipHolderList from intersight.model.resource_membership_list import ResourceMembershipList + from intersight.model.resourcepool_lease_list import ResourcepoolLeaseList + from intersight.model.resourcepool_lease_resource_list import ResourcepoolLeaseResourceList + from intersight.model.resourcepool_pool_list import ResourcepoolPoolList + from intersight.model.resourcepool_pool_member_list import ResourcepoolPoolMemberList + from intersight.model.resourcepool_universe_list import ResourcepoolUniverseList from intersight.model.sdcard_policy_list import SdcardPolicyList from intersight.model.sdwan_profile_list import SdwanProfileList from intersight.model.sdwan_router_node_list import SdwanRouterNodeList @@ -717,6 +727,7 @@ def lazy_import(): from intersight.model.virtualization_vmware_vcenter_list import VirtualizationVmwareVcenterList from intersight.model.virtualization_vmware_virtual_disk_list import VirtualizationVmwareVirtualDiskList from intersight.model.virtualization_vmware_virtual_machine_list import VirtualizationVmwareVirtualMachineList + from intersight.model.virtualization_vmware_virtual_machine_snapshot_list import VirtualizationVmwareVirtualMachineSnapshotList from intersight.model.virtualization_vmware_virtual_network_interface_list import VirtualizationVmwareVirtualNetworkInterfaceList from intersight.model.virtualization_vmware_virtual_switch_list import VirtualizationVmwareVirtualSwitchList from intersight.model.vmedia_policy_list import VmediaPolicyList @@ -755,6 +766,8 @@ def lazy_import(): from intersight.model.workflow_workflow_meta_list import WorkflowWorkflowMetaList from intersight.model.workflow_workflow_metadata_list import WorkflowWorkflowMetadataList globals()['AaaAuditRecordList'] = AaaAuditRecordList + globals()['AaaRetentionConfigList'] = AaaRetentionConfigList + globals()['AaaRetentionPolicyList'] = AaaRetentionPolicyList globals()['AccessPolicyList'] = AccessPolicyList globals()['AdapterConfigPolicyList'] = AdapterConfigPolicyList globals()['AdapterExtEthInterfaceList'] = AdapterExtEthInterfaceList @@ -771,6 +784,7 @@ def lazy_import(): globals()['ApplianceDataExportPolicyList'] = ApplianceDataExportPolicyList globals()['ApplianceDeviceCertificateList'] = ApplianceDeviceCertificateList globals()['ApplianceDeviceClaimList'] = ApplianceDeviceClaimList + globals()['ApplianceDeviceUpgradePolicyList'] = ApplianceDeviceUpgradePolicyList globals()['ApplianceDiagSettingList'] = ApplianceDiagSettingList globals()['ApplianceExternalSyslogSettingList'] = ApplianceExternalSyslogSettingList globals()['ApplianceFileSystemStatusList'] = ApplianceFileSystemStatusList @@ -818,6 +832,10 @@ def lazy_import(): globals()['BootUefiShellDeviceList'] = BootUefiShellDeviceList globals()['BootUsbDeviceList'] = BootUsbDeviceList globals()['BootVmediaDeviceList'] = BootVmediaDeviceList + globals()['BulkExportList'] = BulkExportList + globals()['BulkExportedItemList'] = BulkExportedItemList + globals()['BulkRequestList'] = BulkRequestList + globals()['BulkSubRequestObjList'] = BulkSubRequestObjList globals()['CapabilityAdapterUnitDescriptorList'] = CapabilityAdapterUnitDescriptorList globals()['CapabilityCatalogList'] = CapabilityCatalogList globals()['CapabilityChassisDescriptorList'] = CapabilityChassisDescriptorList @@ -880,10 +898,6 @@ def lazy_import(): globals()['CondHclStatusDetailList'] = CondHclStatusDetailList globals()['CondHclStatusJobList'] = CondHclStatusJobList globals()['CondHclStatusList'] = CondHclStatusList - globals()['ConfigExportedItemList'] = ConfigExportedItemList - globals()['ConfigExporterList'] = ConfigExporterList - globals()['ConfigImportedItemList'] = ConfigImportedItemList - globals()['ConfigImporterList'] = ConfigImporterList globals()['ConnectorpackConnectorPackUpgradeList'] = ConnectorpackConnectorPackUpgradeList globals()['ConnectorpackUpgradeImpactList'] = ConnectorpackUpgradeImpactList globals()['CrdCustomResourceList'] = CrdCustomResourceList @@ -892,6 +906,7 @@ def lazy_import(): globals()['EquipmentChassisList'] = EquipmentChassisList globals()['EquipmentChassisOperationList'] = EquipmentChassisOperationList globals()['EquipmentDeviceSummaryList'] = EquipmentDeviceSummaryList + globals()['EquipmentExpanderModuleList'] = EquipmentExpanderModuleList globals()['EquipmentFanControlList'] = EquipmentFanControlList globals()['EquipmentFanList'] = EquipmentFanList globals()['EquipmentFanModuleList'] = EquipmentFanModuleList @@ -1133,6 +1148,7 @@ def lazy_import(): globals()['KubernetesAddonDefinitionList'] = KubernetesAddonDefinitionList globals()['KubernetesAddonPolicyList'] = KubernetesAddonPolicyList globals()['KubernetesAddonRepositoryList'] = KubernetesAddonRepositoryList + globals()['KubernetesBaremetalNodeProfileList'] = KubernetesBaremetalNodeProfileList globals()['KubernetesCatalogList'] = KubernetesCatalogList globals()['KubernetesClusterAddonProfileList'] = KubernetesClusterAddonProfileList globals()['KubernetesClusterList'] = KubernetesClusterList @@ -1302,6 +1318,11 @@ def lazy_import(): globals()['ResourceLicenseResourceCountList'] = ResourceLicenseResourceCountList globals()['ResourceMembershipHolderList'] = ResourceMembershipHolderList globals()['ResourceMembershipList'] = ResourceMembershipList + globals()['ResourcepoolLeaseList'] = ResourcepoolLeaseList + globals()['ResourcepoolLeaseResourceList'] = ResourcepoolLeaseResourceList + globals()['ResourcepoolPoolList'] = ResourcepoolPoolList + globals()['ResourcepoolPoolMemberList'] = ResourcepoolPoolMemberList + globals()['ResourcepoolUniverseList'] = ResourcepoolUniverseList globals()['SdcardPolicyList'] = SdcardPolicyList globals()['SdwanProfileList'] = SdwanProfileList globals()['SdwanRouterNodeList'] = SdwanRouterNodeList @@ -1443,6 +1464,7 @@ def lazy_import(): globals()['VirtualizationVmwareVcenterList'] = VirtualizationVmwareVcenterList globals()['VirtualizationVmwareVirtualDiskList'] = VirtualizationVmwareVirtualDiskList globals()['VirtualizationVmwareVirtualMachineList'] = VirtualizationVmwareVirtualMachineList + globals()['VirtualizationVmwareVirtualMachineSnapshotList'] = VirtualizationVmwareVirtualMachineSnapshotList globals()['VirtualizationVmwareVirtualNetworkInterfaceList'] = VirtualizationVmwareVirtualNetworkInterfaceList globals()['VirtualizationVmwareVirtualSwitchList'] = VirtualizationVmwareVirtualSwitchList globals()['VmediaPolicyList'] = VmediaPolicyList @@ -1536,6 +1558,8 @@ def discriminator(): lazy_import() val = { 'aaa.AuditRecord.List': AaaAuditRecordList, + 'aaa.RetentionConfig.List': AaaRetentionConfigList, + 'aaa.RetentionPolicy.List': AaaRetentionPolicyList, 'access.Policy.List': AccessPolicyList, 'adapter.ConfigPolicy.List': AdapterConfigPolicyList, 'adapter.ExtEthInterface.List': AdapterExtEthInterfaceList, @@ -1552,6 +1576,7 @@ def discriminator(): 'appliance.DataExportPolicy.List': ApplianceDataExportPolicyList, 'appliance.DeviceCertificate.List': ApplianceDeviceCertificateList, 'appliance.DeviceClaim.List': ApplianceDeviceClaimList, + 'appliance.DeviceUpgradePolicy.List': ApplianceDeviceUpgradePolicyList, 'appliance.DiagSetting.List': ApplianceDiagSettingList, 'appliance.ExternalSyslogSetting.List': ApplianceExternalSyslogSettingList, 'appliance.FileSystemStatus.List': ApplianceFileSystemStatusList, @@ -1599,6 +1624,10 @@ def discriminator(): 'boot.UefiShellDevice.List': BootUefiShellDeviceList, 'boot.UsbDevice.List': BootUsbDeviceList, 'boot.VmediaDevice.List': BootVmediaDeviceList, + 'bulk.Export.List': BulkExportList, + 'bulk.ExportedItem.List': BulkExportedItemList, + 'bulk.Request.List': BulkRequestList, + 'bulk.SubRequestObj.List': BulkSubRequestObjList, 'capability.AdapterUnitDescriptor.List': CapabilityAdapterUnitDescriptorList, 'capability.Catalog.List': CapabilityCatalogList, 'capability.ChassisDescriptor.List': CapabilityChassisDescriptorList, @@ -1661,10 +1690,6 @@ def discriminator(): 'cond.HclStatus.List': CondHclStatusList, 'cond.HclStatusDetail.List': CondHclStatusDetailList, 'cond.HclStatusJob.List': CondHclStatusJobList, - 'config.ExportedItem.List': ConfigExportedItemList, - 'config.Exporter.List': ConfigExporterList, - 'config.ImportedItem.List': ConfigImportedItemList, - 'config.Importer.List': ConfigImporterList, 'connectorpack.ConnectorPackUpgrade.List': ConnectorpackConnectorPackUpgradeList, 'connectorpack.UpgradeImpact.List': ConnectorpackUpgradeImpactList, 'crd.CustomResource.List': CrdCustomResourceList, @@ -1673,6 +1698,7 @@ def discriminator(): 'equipment.ChassisIdentity.List': EquipmentChassisIdentityList, 'equipment.ChassisOperation.List': EquipmentChassisOperationList, 'equipment.DeviceSummary.List': EquipmentDeviceSummaryList, + 'equipment.ExpanderModule.List': EquipmentExpanderModuleList, 'equipment.Fan.List': EquipmentFanList, 'equipment.FanControl.List': EquipmentFanControlList, 'equipment.FanModule.List': EquipmentFanModuleList, @@ -1914,6 +1940,7 @@ def discriminator(): 'kubernetes.AddonDefinition.List': KubernetesAddonDefinitionList, 'kubernetes.AddonPolicy.List': KubernetesAddonPolicyList, 'kubernetes.AddonRepository.List': KubernetesAddonRepositoryList, + 'kubernetes.BaremetalNodeProfile.List': KubernetesBaremetalNodeProfileList, 'kubernetes.Catalog.List': KubernetesCatalogList, 'kubernetes.Cluster.List': KubernetesClusterList, 'kubernetes.ClusterAddonProfile.List': KubernetesClusterAddonProfileList, @@ -2083,6 +2110,11 @@ def discriminator(): 'resource.LicenseResourceCount.List': ResourceLicenseResourceCountList, 'resource.Membership.List': ResourceMembershipList, 'resource.MembershipHolder.List': ResourceMembershipHolderList, + 'resourcepool.Lease.List': ResourcepoolLeaseList, + 'resourcepool.LeaseResource.List': ResourcepoolLeaseResourceList, + 'resourcepool.Pool.List': ResourcepoolPoolList, + 'resourcepool.PoolMember.List': ResourcepoolPoolMemberList, + 'resourcepool.Universe.List': ResourcepoolUniverseList, 'sdcard.Policy.List': SdcardPolicyList, 'sdwan.Profile.List': SdwanProfileList, 'sdwan.RouterNode.List': SdwanRouterNodeList, @@ -2224,6 +2256,7 @@ def discriminator(): 'virtualization.VmwareVcenter.List': VirtualizationVmwareVcenterList, 'virtualization.VmwareVirtualDisk.List': VirtualizationVmwareVirtualDiskList, 'virtualization.VmwareVirtualMachine.List': VirtualizationVmwareVirtualMachineList, + 'virtualization.VmwareVirtualMachineSnapshot.List': VirtualizationVmwareVirtualMachineSnapshotList, 'virtualization.VmwareVirtualNetworkInterface.List': VirtualizationVmwareVirtualNetworkInterfaceList, 'virtualization.VmwareVirtualSwitch.List': VirtualizationVmwareVirtualSwitchList, 'vmedia.Policy.List': VmediaPolicyList, diff --git a/intersight/model/mo_document_count.py b/intersight/model/mo_document_count.py index cfce96de7b..4a2a46acba 100644 --- a/intersight/model/mo_document_count.py +++ b/intersight/model/mo_document_count.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/mo_document_count_all_of.py b/intersight/model/mo_document_count_all_of.py index eff2ce7948..307d1bbc86 100644 --- a/intersight/model/mo_document_count_all_of.py +++ b/intersight/model/mo_document_count_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/mo_mo_ref.py b/intersight/model/mo_mo_ref.py index c4a21615e7..5f02ca089a 100644 --- a/intersight/model/mo_mo_ref.py +++ b/intersight/model/mo_mo_ref.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -58,6 +58,8 @@ class MoMoRef(ModelNormal): }, ('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", @@ -74,6 +76,7 @@ class MoMoRef(ModelNormal): '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", @@ -122,9 +125,12 @@ class MoMoRef(ModelNormal): '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", @@ -188,10 +194,6 @@ class MoMoRef(ModelNormal): '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", @@ -200,6 +202,7 @@ class MoMoRef(ModelNormal): '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", @@ -448,6 +451,7 @@ class MoMoRef(ModelNormal): '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", @@ -617,6 +621,11 @@ class MoMoRef(ModelNormal): '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", @@ -732,6 +741,7 @@ class MoMoRef(ModelNormal): '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", @@ -763,6 +773,7 @@ class MoMoRef(ModelNormal): '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", @@ -795,12 +806,14 @@ class MoMoRef(ModelNormal): '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/mo_tag.py b/intersight/model/mo_tag.py index 85728d1fee..e0f6627e56 100644 --- a/intersight/model/mo_tag.py +++ b/intersight/model/mo_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/mo_tag_key_summary.py b/intersight/model/mo_tag_key_summary.py index 7273aa1fdc..f8f9b8a35b 100644 --- a/intersight/model/mo_tag_key_summary.py +++ b/intersight/model/mo_tag_key_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/mo_tag_summary.py b/intersight/model/mo_tag_summary.py index f55ae52125..013485812e 100644 --- a/intersight/model/mo_tag_summary.py +++ b/intersight/model/mo_tag_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/mo_tag_summary_all_of.py b/intersight/model/mo_tag_summary_all_of.py index 4109ddfce6..fddfd2c67a 100644 --- a/intersight/model/mo_tag_summary_all_of.py +++ b/intersight/model/mo_tag_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/mo_version_context.py b/intersight/model/mo_version_context.py index 719d8d55fb..7a4bc2e024 100644 --- a/intersight/model/mo_version_context.py +++ b/intersight/model/mo_version_context.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/mo_version_context_all_of.py b/intersight/model/mo_version_context_all_of.py index f86e374617..f528b47e7f 100644 --- a/intersight/model/mo_version_context_all_of.py +++ b/intersight/model/mo_version_context_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/network_element.py b/intersight/model/network_element.py index a0027beaf8..a2924e06f8 100644 --- a/intersight/model/network_element.py +++ b/intersight/model/network_element.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/network_element_all_of.py b/intersight/model/network_element_all_of.py index aa537822f7..f1304d8ca1 100644 --- a/intersight/model/network_element_all_of.py +++ b/intersight/model/network_element_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/network_element_list.py b/intersight/model/network_element_list.py index c1c6209a33..0bf8c1647f 100644 --- a/intersight/model/network_element_list.py +++ b/intersight/model/network_element_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/network_element_list_all_of.py b/intersight/model/network_element_list_all_of.py index 9245c96812..79972e52a7 100644 --- a/intersight/model/network_element_list_all_of.py +++ b/intersight/model/network_element_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/network_element_relationship.py b/intersight/model/network_element_relationship.py index ad1f1f811e..f1a72db09f 100644 --- a/intersight/model/network_element_relationship.py +++ b/intersight/model/network_element_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 """ @@ -125,6 +125,8 @@ class NetworkElementRelationship(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", @@ -141,6 +143,7 @@ class NetworkElementRelationship(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", @@ -189,9 +192,12 @@ class NetworkElementRelationship(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", @@ -255,10 +261,6 @@ class NetworkElementRelationship(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", @@ -267,6 +269,7 @@ class NetworkElementRelationship(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", @@ -515,6 +518,7 @@ class NetworkElementRelationship(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", @@ -684,6 +688,11 @@ class NetworkElementRelationship(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", @@ -799,6 +808,7 @@ class NetworkElementRelationship(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", @@ -830,6 +840,7 @@ class NetworkElementRelationship(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", @@ -862,12 +873,14 @@ class NetworkElementRelationship(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/network_element_response.py b/intersight/model/network_element_response.py index 854b5bbc07..1f3e6958e0 100644 --- a/intersight/model/network_element_response.py +++ b/intersight/model/network_element_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/network_element_summary.py b/intersight/model/network_element_summary.py index 198f82a62c..285f654fc1 100644 --- a/intersight/model/network_element_summary.py +++ b/intersight/model/network_element_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/network_element_summary_all_of.py b/intersight/model/network_element_summary_all_of.py index 90a44fbbdc..375badc765 100644 --- a/intersight/model/network_element_summary_all_of.py +++ b/intersight/model/network_element_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/network_element_summary_list.py b/intersight/model/network_element_summary_list.py index 1ccea20ddf..e632c6af78 100644 --- a/intersight/model/network_element_summary_list.py +++ b/intersight/model/network_element_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/network_element_summary_list_all_of.py b/intersight/model/network_element_summary_list_all_of.py index 6f6ede9d89..1900d1eb6c 100644 --- a/intersight/model/network_element_summary_list_all_of.py +++ b/intersight/model/network_element_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/network_element_summary_response.py b/intersight/model/network_element_summary_response.py index 495ff29f6a..cd5cc79a11 100644 --- a/intersight/model/network_element_summary_response.py +++ b/intersight/model/network_element_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/network_fc_zone_info.py b/intersight/model/network_fc_zone_info.py index 3fabc674e8..3681f8bded 100644 --- a/intersight/model/network_fc_zone_info.py +++ b/intersight/model/network_fc_zone_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/network_fc_zone_info_all_of.py b/intersight/model/network_fc_zone_info_all_of.py index be88e5bd8c..45ec7d4024 100644 --- a/intersight/model/network_fc_zone_info_all_of.py +++ b/intersight/model/network_fc_zone_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/network_fc_zone_info_list.py b/intersight/model/network_fc_zone_info_list.py index 9ac8ced8eb..66ddd010fc 100644 --- a/intersight/model/network_fc_zone_info_list.py +++ b/intersight/model/network_fc_zone_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/network_fc_zone_info_list_all_of.py b/intersight/model/network_fc_zone_info_list_all_of.py index 9f660ef268..c27152cf3b 100644 --- a/intersight/model/network_fc_zone_info_list_all_of.py +++ b/intersight/model/network_fc_zone_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/network_fc_zone_info_relationship.py b/intersight/model/network_fc_zone_info_relationship.py index abd70f3a00..387516c5d6 100644 --- a/intersight/model/network_fc_zone_info_relationship.py +++ b/intersight/model/network_fc_zone_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 """ @@ -78,6 +78,8 @@ class NetworkFcZoneInfoRelationship(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 NetworkFcZoneInfoRelationship(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 NetworkFcZoneInfoRelationship(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 NetworkFcZoneInfoRelationship(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 NetworkFcZoneInfoRelationship(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 NetworkFcZoneInfoRelationship(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 NetworkFcZoneInfoRelationship(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 NetworkFcZoneInfoRelationship(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 NetworkFcZoneInfoRelationship(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 NetworkFcZoneInfoRelationship(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/network_fc_zone_info_response.py b/intersight/model/network_fc_zone_info_response.py index 4a13a04ad9..fc4ff83437 100644 --- a/intersight/model/network_fc_zone_info_response.py +++ b/intersight/model/network_fc_zone_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/network_vlan_port_info.py b/intersight/model/network_vlan_port_info.py index 2500804ff8..ff11544179 100644 --- a/intersight/model/network_vlan_port_info.py +++ b/intersight/model/network_vlan_port_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/network_vlan_port_info_all_of.py b/intersight/model/network_vlan_port_info_all_of.py index 63f33d7770..4e09a8d10e 100644 --- a/intersight/model/network_vlan_port_info_all_of.py +++ b/intersight/model/network_vlan_port_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/network_vlan_port_info_list.py b/intersight/model/network_vlan_port_info_list.py index ba7a0adbc8..4c19e3a9cc 100644 --- a/intersight/model/network_vlan_port_info_list.py +++ b/intersight/model/network_vlan_port_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/network_vlan_port_info_list_all_of.py b/intersight/model/network_vlan_port_info_list_all_of.py index 868e6de4eb..7a2e744a46 100644 --- a/intersight/model/network_vlan_port_info_list_all_of.py +++ b/intersight/model/network_vlan_port_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/network_vlan_port_info_relationship.py b/intersight/model/network_vlan_port_info_relationship.py index 04acc867c8..ba7927a1c8 100644 --- a/intersight/model/network_vlan_port_info_relationship.py +++ b/intersight/model/network_vlan_port_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 """ @@ -78,6 +78,8 @@ class NetworkVlanPortInfoRelationship(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 NetworkVlanPortInfoRelationship(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 NetworkVlanPortInfoRelationship(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 NetworkVlanPortInfoRelationship(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 NetworkVlanPortInfoRelationship(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 NetworkVlanPortInfoRelationship(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 NetworkVlanPortInfoRelationship(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 NetworkVlanPortInfoRelationship(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 NetworkVlanPortInfoRelationship(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 NetworkVlanPortInfoRelationship(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/network_vlan_port_info_response.py b/intersight/model/network_vlan_port_info_response.py index 7ef336b7cf..c7eb9ab352 100644 --- a/intersight/model/network_vlan_port_info_response.py +++ b/intersight/model/network_vlan_port_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/networkconfig_policy.py b/intersight/model/networkconfig_policy.py index 00669f3648..a8895c734d 100644 --- a/intersight/model/networkconfig_policy.py +++ b/intersight/model/networkconfig_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/networkconfig_policy_all_of.py b/intersight/model/networkconfig_policy_all_of.py index 29d1f3eab0..d4a884a433 100644 --- a/intersight/model/networkconfig_policy_all_of.py +++ b/intersight/model/networkconfig_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/networkconfig_policy_list.py b/intersight/model/networkconfig_policy_list.py index f7ad6d0c84..3f7864fca1 100644 --- a/intersight/model/networkconfig_policy_list.py +++ b/intersight/model/networkconfig_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/networkconfig_policy_list_all_of.py b/intersight/model/networkconfig_policy_list_all_of.py index 4c1ea38c3f..3512b2acdf 100644 --- a/intersight/model/networkconfig_policy_list_all_of.py +++ b/intersight/model/networkconfig_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/networkconfig_policy_response.py b/intersight/model/networkconfig_policy_response.py index 53dc9d1143..e42d474666 100644 --- a/intersight/model/networkconfig_policy_response.py +++ b/intersight/model/networkconfig_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/niaapi_apic_cco_post.py b/intersight/model/niaapi_apic_cco_post.py index 5cd3d3b139..1615971cae 100644 --- a/intersight/model/niaapi_apic_cco_post.py +++ b/intersight/model/niaapi_apic_cco_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/niaapi_apic_cco_post_list.py b/intersight/model/niaapi_apic_cco_post_list.py index cdcc87b509..ec31f6dc8b 100644 --- a/intersight/model/niaapi_apic_cco_post_list.py +++ b/intersight/model/niaapi_apic_cco_post_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/niaapi_apic_cco_post_list_all_of.py b/intersight/model/niaapi_apic_cco_post_list_all_of.py index 79a3ae53d8..c9fb3e6d48 100644 --- a/intersight/model/niaapi_apic_cco_post_list_all_of.py +++ b/intersight/model/niaapi_apic_cco_post_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/niaapi_apic_cco_post_response.py b/intersight/model/niaapi_apic_cco_post_response.py index 347b5cc600..ebf7c7f0a7 100644 --- a/intersight/model/niaapi_apic_cco_post_response.py +++ b/intersight/model/niaapi_apic_cco_post_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/niaapi_apic_field_notice.py b/intersight/model/niaapi_apic_field_notice.py index 5a3478cff5..20c918cda8 100644 --- a/intersight/model/niaapi_apic_field_notice.py +++ b/intersight/model/niaapi_apic_field_notice.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_apic_field_notice_list.py b/intersight/model/niaapi_apic_field_notice_list.py index 33866e96bc..ea31de999a 100644 --- a/intersight/model/niaapi_apic_field_notice_list.py +++ b/intersight/model/niaapi_apic_field_notice_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/niaapi_apic_field_notice_list_all_of.py b/intersight/model/niaapi_apic_field_notice_list_all_of.py index e00c6bcb68..f9a78032fe 100644 --- a/intersight/model/niaapi_apic_field_notice_list_all_of.py +++ b/intersight/model/niaapi_apic_field_notice_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/niaapi_apic_field_notice_response.py b/intersight/model/niaapi_apic_field_notice_response.py index 76141a9012..5ee57a7aa0 100644 --- a/intersight/model/niaapi_apic_field_notice_response.py +++ b/intersight/model/niaapi_apic_field_notice_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/niaapi_apic_hweol.py b/intersight/model/niaapi_apic_hweol.py index 43ff23d3c7..9d4978aea5 100644 --- a/intersight/model/niaapi_apic_hweol.py +++ b/intersight/model/niaapi_apic_hweol.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_apic_hweol_list.py b/intersight/model/niaapi_apic_hweol_list.py index 8d52abaf13..d18d68d3f5 100644 --- a/intersight/model/niaapi_apic_hweol_list.py +++ b/intersight/model/niaapi_apic_hweol_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/niaapi_apic_hweol_list_all_of.py b/intersight/model/niaapi_apic_hweol_list_all_of.py index aa25aa83ad..edf89bed23 100644 --- a/intersight/model/niaapi_apic_hweol_list_all_of.py +++ b/intersight/model/niaapi_apic_hweol_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/niaapi_apic_hweol_response.py b/intersight/model/niaapi_apic_hweol_response.py index 93b2cce068..e8d4098c6b 100644 --- a/intersight/model/niaapi_apic_hweol_response.py +++ b/intersight/model/niaapi_apic_hweol_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/niaapi_apic_latest_maintained_release.py b/intersight/model/niaapi_apic_latest_maintained_release.py index aa24909160..54faadaab7 100644 --- a/intersight/model/niaapi_apic_latest_maintained_release.py +++ b/intersight/model/niaapi_apic_latest_maintained_release.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_apic_latest_maintained_release_list.py b/intersight/model/niaapi_apic_latest_maintained_release_list.py index 081d5c17ff..506a4ed3fa 100644 --- a/intersight/model/niaapi_apic_latest_maintained_release_list.py +++ b/intersight/model/niaapi_apic_latest_maintained_release_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/niaapi_apic_latest_maintained_release_list_all_of.py b/intersight/model/niaapi_apic_latest_maintained_release_list_all_of.py index c49d88798e..a9f139a1ce 100644 --- a/intersight/model/niaapi_apic_latest_maintained_release_list_all_of.py +++ b/intersight/model/niaapi_apic_latest_maintained_release_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/niaapi_apic_latest_maintained_release_response.py b/intersight/model/niaapi_apic_latest_maintained_release_response.py index de7d7addf4..1c67ad258d 100644 --- a/intersight/model/niaapi_apic_latest_maintained_release_response.py +++ b/intersight/model/niaapi_apic_latest_maintained_release_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/niaapi_apic_release_recommend.py b/intersight/model/niaapi_apic_release_recommend.py index 2b9f867978..54ea47e4e0 100644 --- a/intersight/model/niaapi_apic_release_recommend.py +++ b/intersight/model/niaapi_apic_release_recommend.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_apic_release_recommend_list.py b/intersight/model/niaapi_apic_release_recommend_list.py index 3c9bdbe962..1e01ef01c8 100644 --- a/intersight/model/niaapi_apic_release_recommend_list.py +++ b/intersight/model/niaapi_apic_release_recommend_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/niaapi_apic_release_recommend_list_all_of.py b/intersight/model/niaapi_apic_release_recommend_list_all_of.py index 22afa47c51..6b5627521f 100644 --- a/intersight/model/niaapi_apic_release_recommend_list_all_of.py +++ b/intersight/model/niaapi_apic_release_recommend_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/niaapi_apic_release_recommend_response.py b/intersight/model/niaapi_apic_release_recommend_response.py index 55390844ff..a16c7afec5 100644 --- a/intersight/model/niaapi_apic_release_recommend_response.py +++ b/intersight/model/niaapi_apic_release_recommend_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/niaapi_apic_sweol.py b/intersight/model/niaapi_apic_sweol.py index eda47c3189..7042cda639 100644 --- a/intersight/model/niaapi_apic_sweol.py +++ b/intersight/model/niaapi_apic_sweol.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_apic_sweol_list.py b/intersight/model/niaapi_apic_sweol_list.py index cc3a725965..96946150f4 100644 --- a/intersight/model/niaapi_apic_sweol_list.py +++ b/intersight/model/niaapi_apic_sweol_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/niaapi_apic_sweol_list_all_of.py b/intersight/model/niaapi_apic_sweol_list_all_of.py index a2ecbba71f..8a26fe0e11 100644 --- a/intersight/model/niaapi_apic_sweol_list_all_of.py +++ b/intersight/model/niaapi_apic_sweol_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/niaapi_apic_sweol_response.py b/intersight/model/niaapi_apic_sweol_response.py index 602a005adc..f503d7a064 100644 --- a/intersight/model/niaapi_apic_sweol_response.py +++ b/intersight/model/niaapi_apic_sweol_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/niaapi_dcnm_cco_post.py b/intersight/model/niaapi_dcnm_cco_post.py index 8b07b15439..dbc6620ed1 100644 --- a/intersight/model/niaapi_dcnm_cco_post.py +++ b/intersight/model/niaapi_dcnm_cco_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/niaapi_dcnm_cco_post_list.py b/intersight/model/niaapi_dcnm_cco_post_list.py index 3134e67af9..af7e47c0da 100644 --- a/intersight/model/niaapi_dcnm_cco_post_list.py +++ b/intersight/model/niaapi_dcnm_cco_post_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/niaapi_dcnm_cco_post_list_all_of.py b/intersight/model/niaapi_dcnm_cco_post_list_all_of.py index 7a913027bd..5b8a85161f 100644 --- a/intersight/model/niaapi_dcnm_cco_post_list_all_of.py +++ b/intersight/model/niaapi_dcnm_cco_post_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/niaapi_dcnm_cco_post_response.py b/intersight/model/niaapi_dcnm_cco_post_response.py index 8e41bce127..ae18887a6e 100644 --- a/intersight/model/niaapi_dcnm_cco_post_response.py +++ b/intersight/model/niaapi_dcnm_cco_post_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/niaapi_dcnm_field_notice.py b/intersight/model/niaapi_dcnm_field_notice.py index 17533e630e..56c00a3edc 100644 --- a/intersight/model/niaapi_dcnm_field_notice.py +++ b/intersight/model/niaapi_dcnm_field_notice.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_dcnm_field_notice_list.py b/intersight/model/niaapi_dcnm_field_notice_list.py index 3d579c5923..2033f407d1 100644 --- a/intersight/model/niaapi_dcnm_field_notice_list.py +++ b/intersight/model/niaapi_dcnm_field_notice_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/niaapi_dcnm_field_notice_list_all_of.py b/intersight/model/niaapi_dcnm_field_notice_list_all_of.py index ad9224a03d..5b79a65cda 100644 --- a/intersight/model/niaapi_dcnm_field_notice_list_all_of.py +++ b/intersight/model/niaapi_dcnm_field_notice_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/niaapi_dcnm_field_notice_response.py b/intersight/model/niaapi_dcnm_field_notice_response.py index a84b3041b3..35715c2ec0 100644 --- a/intersight/model/niaapi_dcnm_field_notice_response.py +++ b/intersight/model/niaapi_dcnm_field_notice_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/niaapi_dcnm_hweol.py b/intersight/model/niaapi_dcnm_hweol.py index 4ad0a9ba65..a0a572f7c4 100644 --- a/intersight/model/niaapi_dcnm_hweol.py +++ b/intersight/model/niaapi_dcnm_hweol.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_dcnm_hweol_list.py b/intersight/model/niaapi_dcnm_hweol_list.py index 541c75f0d5..9af59a72ff 100644 --- a/intersight/model/niaapi_dcnm_hweol_list.py +++ b/intersight/model/niaapi_dcnm_hweol_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/niaapi_dcnm_hweol_list_all_of.py b/intersight/model/niaapi_dcnm_hweol_list_all_of.py index 6dccff42af..82ce24393b 100644 --- a/intersight/model/niaapi_dcnm_hweol_list_all_of.py +++ b/intersight/model/niaapi_dcnm_hweol_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/niaapi_dcnm_hweol_response.py b/intersight/model/niaapi_dcnm_hweol_response.py index 7c261f3486..1e941a26bc 100644 --- a/intersight/model/niaapi_dcnm_hweol_response.py +++ b/intersight/model/niaapi_dcnm_hweol_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/niaapi_dcnm_latest_maintained_release.py b/intersight/model/niaapi_dcnm_latest_maintained_release.py index 3f839d662b..dbf6a3393d 100644 --- a/intersight/model/niaapi_dcnm_latest_maintained_release.py +++ b/intersight/model/niaapi_dcnm_latest_maintained_release.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_dcnm_latest_maintained_release_list.py b/intersight/model/niaapi_dcnm_latest_maintained_release_list.py index 3a096012bb..74288f703e 100644 --- a/intersight/model/niaapi_dcnm_latest_maintained_release_list.py +++ b/intersight/model/niaapi_dcnm_latest_maintained_release_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/niaapi_dcnm_latest_maintained_release_list_all_of.py b/intersight/model/niaapi_dcnm_latest_maintained_release_list_all_of.py index 141cb62d8f..1b938a63fc 100644 --- a/intersight/model/niaapi_dcnm_latest_maintained_release_list_all_of.py +++ b/intersight/model/niaapi_dcnm_latest_maintained_release_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/niaapi_dcnm_latest_maintained_release_response.py b/intersight/model/niaapi_dcnm_latest_maintained_release_response.py index b795f6495b..f29adf4fda 100644 --- a/intersight/model/niaapi_dcnm_latest_maintained_release_response.py +++ b/intersight/model/niaapi_dcnm_latest_maintained_release_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/niaapi_dcnm_release_recommend.py b/intersight/model/niaapi_dcnm_release_recommend.py index 0f2b707b73..f7d0b87675 100644 --- a/intersight/model/niaapi_dcnm_release_recommend.py +++ b/intersight/model/niaapi_dcnm_release_recommend.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_dcnm_release_recommend_list.py b/intersight/model/niaapi_dcnm_release_recommend_list.py index 0bd99b3a83..1a31472f4f 100644 --- a/intersight/model/niaapi_dcnm_release_recommend_list.py +++ b/intersight/model/niaapi_dcnm_release_recommend_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/niaapi_dcnm_release_recommend_list_all_of.py b/intersight/model/niaapi_dcnm_release_recommend_list_all_of.py index d2d25c4a1b..99dd9a968f 100644 --- a/intersight/model/niaapi_dcnm_release_recommend_list_all_of.py +++ b/intersight/model/niaapi_dcnm_release_recommend_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/niaapi_dcnm_release_recommend_response.py b/intersight/model/niaapi_dcnm_release_recommend_response.py index 229d4b2ca7..8425646d26 100644 --- a/intersight/model/niaapi_dcnm_release_recommend_response.py +++ b/intersight/model/niaapi_dcnm_release_recommend_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/niaapi_dcnm_sweol.py b/intersight/model/niaapi_dcnm_sweol.py index 79b9241dc0..34e2c3a4ac 100644 --- a/intersight/model/niaapi_dcnm_sweol.py +++ b/intersight/model/niaapi_dcnm_sweol.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_dcnm_sweol_list.py b/intersight/model/niaapi_dcnm_sweol_list.py index 7f211e59b5..1f466d2386 100644 --- a/intersight/model/niaapi_dcnm_sweol_list.py +++ b/intersight/model/niaapi_dcnm_sweol_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/niaapi_dcnm_sweol_list_all_of.py b/intersight/model/niaapi_dcnm_sweol_list_all_of.py index a0304f5a4c..9c055a2192 100644 --- a/intersight/model/niaapi_dcnm_sweol_list_all_of.py +++ b/intersight/model/niaapi_dcnm_sweol_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/niaapi_dcnm_sweol_response.py b/intersight/model/niaapi_dcnm_sweol_response.py index 0d0f0dfc78..2db2392886 100644 --- a/intersight/model/niaapi_dcnm_sweol_response.py +++ b/intersight/model/niaapi_dcnm_sweol_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/niaapi_detail.py b/intersight/model/niaapi_detail.py index e24cab575c..e220b55561 100644 --- a/intersight/model/niaapi_detail.py +++ b/intersight/model/niaapi_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/niaapi_detail_all_of.py b/intersight/model/niaapi_detail_all_of.py index 9161a9311c..8dca96fe49 100644 --- a/intersight/model/niaapi_detail_all_of.py +++ b/intersight/model/niaapi_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/niaapi_field_notice.py b/intersight/model/niaapi_field_notice.py index aca95a8caf..69ff238cdc 100644 --- a/intersight/model/niaapi_field_notice.py +++ b/intersight/model/niaapi_field_notice.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_field_notice_all_of.py b/intersight/model/niaapi_field_notice_all_of.py index 217919ab84..6c126e5d0d 100644 --- a/intersight/model/niaapi_field_notice_all_of.py +++ b/intersight/model/niaapi_field_notice_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_file_downloader.py b/intersight/model/niaapi_file_downloader.py index 4a40e115cf..ffdd3ce9d4 100644 --- a/intersight/model/niaapi_file_downloader.py +++ b/intersight/model/niaapi_file_downloader.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_file_downloader_all_of.py b/intersight/model/niaapi_file_downloader_all_of.py index 06ba413eb8..89c4835ca6 100644 --- a/intersight/model/niaapi_file_downloader_all_of.py +++ b/intersight/model/niaapi_file_downloader_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_file_downloader_list.py b/intersight/model/niaapi_file_downloader_list.py index b3019efc40..8a18061ff7 100644 --- a/intersight/model/niaapi_file_downloader_list.py +++ b/intersight/model/niaapi_file_downloader_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/niaapi_file_downloader_list_all_of.py b/intersight/model/niaapi_file_downloader_list_all_of.py index 3e4c7c4855..8280e31efe 100644 --- a/intersight/model/niaapi_file_downloader_list_all_of.py +++ b/intersight/model/niaapi_file_downloader_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/niaapi_file_downloader_response.py b/intersight/model/niaapi_file_downloader_response.py index a053e1ac49..ece314a28f 100644 --- a/intersight/model/niaapi_file_downloader_response.py +++ b/intersight/model/niaapi_file_downloader_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/niaapi_hardware_eol.py b/intersight/model/niaapi_hardware_eol.py index 3dbeb874e7..2d42982817 100644 --- a/intersight/model/niaapi_hardware_eol.py +++ b/intersight/model/niaapi_hardware_eol.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_hardware_eol_all_of.py b/intersight/model/niaapi_hardware_eol_all_of.py index 1ea2ce4ffc..12b726ff74 100644 --- a/intersight/model/niaapi_hardware_eol_all_of.py +++ b/intersight/model/niaapi_hardware_eol_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_maintained_release.py b/intersight/model/niaapi_maintained_release.py index f06bc08dc5..68e7177c4c 100644 --- a/intersight/model/niaapi_maintained_release.py +++ b/intersight/model/niaapi_maintained_release.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_maintained_release_all_of.py b/intersight/model/niaapi_maintained_release_all_of.py index c9f1aa605d..0d4504ab35 100644 --- a/intersight/model/niaapi_maintained_release_all_of.py +++ b/intersight/model/niaapi_maintained_release_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_new_release_detail.py b/intersight/model/niaapi_new_release_detail.py index ed2f90dcbb..76635d5891 100644 --- a/intersight/model/niaapi_new_release_detail.py +++ b/intersight/model/niaapi_new_release_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/niaapi_new_release_detail_all_of.py b/intersight/model/niaapi_new_release_detail_all_of.py index ba1a81d883..29b8bf2450 100644 --- a/intersight/model/niaapi_new_release_detail_all_of.py +++ b/intersight/model/niaapi_new_release_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/niaapi_new_release_post.py b/intersight/model/niaapi_new_release_post.py index da2d4e0480..1391a92860 100644 --- a/intersight/model/niaapi_new_release_post.py +++ b/intersight/model/niaapi_new_release_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/niaapi_new_release_post_all_of.py b/intersight/model/niaapi_new_release_post_all_of.py index 9095eb5c0c..f7b04f6129 100644 --- a/intersight/model/niaapi_new_release_post_all_of.py +++ b/intersight/model/niaapi_new_release_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/niaapi_nia_metadata.py b/intersight/model/niaapi_nia_metadata.py index b3b79c15bc..b5cca93536 100644 --- a/intersight/model/niaapi_nia_metadata.py +++ b/intersight/model/niaapi_nia_metadata.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_nia_metadata_all_of.py b/intersight/model/niaapi_nia_metadata_all_of.py index fd6171d8f7..10b917fc1f 100644 --- a/intersight/model/niaapi_nia_metadata_all_of.py +++ b/intersight/model/niaapi_nia_metadata_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_nia_metadata_list.py b/intersight/model/niaapi_nia_metadata_list.py index 4806ae48d4..d89e615420 100644 --- a/intersight/model/niaapi_nia_metadata_list.py +++ b/intersight/model/niaapi_nia_metadata_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/niaapi_nia_metadata_list_all_of.py b/intersight/model/niaapi_nia_metadata_list_all_of.py index 77f9193372..df618ebfe9 100644 --- a/intersight/model/niaapi_nia_metadata_list_all_of.py +++ b/intersight/model/niaapi_nia_metadata_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/niaapi_nia_metadata_response.py b/intersight/model/niaapi_nia_metadata_response.py index a161a06bc2..4bcaf46ed2 100644 --- a/intersight/model/niaapi_nia_metadata_response.py +++ b/intersight/model/niaapi_nia_metadata_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/niaapi_nib_file_downloader.py b/intersight/model/niaapi_nib_file_downloader.py index c758e1fe72..e2131b3738 100644 --- a/intersight/model/niaapi_nib_file_downloader.py +++ b/intersight/model/niaapi_nib_file_downloader.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_nib_file_downloader_all_of.py b/intersight/model/niaapi_nib_file_downloader_all_of.py index d08d22b722..24c69cce3d 100644 --- a/intersight/model/niaapi_nib_file_downloader_all_of.py +++ b/intersight/model/niaapi_nib_file_downloader_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_nib_file_downloader_list.py b/intersight/model/niaapi_nib_file_downloader_list.py index 0c6372aebb..0e8ec0b673 100644 --- a/intersight/model/niaapi_nib_file_downloader_list.py +++ b/intersight/model/niaapi_nib_file_downloader_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/niaapi_nib_file_downloader_list_all_of.py b/intersight/model/niaapi_nib_file_downloader_list_all_of.py index 3df5fe03e9..7d8c41d8e1 100644 --- a/intersight/model/niaapi_nib_file_downloader_list_all_of.py +++ b/intersight/model/niaapi_nib_file_downloader_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/niaapi_nib_file_downloader_response.py b/intersight/model/niaapi_nib_file_downloader_response.py index 8a4717b361..8ff8542624 100644 --- a/intersight/model/niaapi_nib_file_downloader_response.py +++ b/intersight/model/niaapi_nib_file_downloader_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/niaapi_nib_metadata.py b/intersight/model/niaapi_nib_metadata.py index 704f2e2d96..e9e061255d 100644 --- a/intersight/model/niaapi_nib_metadata.py +++ b/intersight/model/niaapi_nib_metadata.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_nib_metadata_all_of.py b/intersight/model/niaapi_nib_metadata_all_of.py index 9de1cb7a55..e912aabd50 100644 --- a/intersight/model/niaapi_nib_metadata_all_of.py +++ b/intersight/model/niaapi_nib_metadata_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_nib_metadata_list.py b/intersight/model/niaapi_nib_metadata_list.py index c6ec7a4af7..d107f6384a 100644 --- a/intersight/model/niaapi_nib_metadata_list.py +++ b/intersight/model/niaapi_nib_metadata_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/niaapi_nib_metadata_list_all_of.py b/intersight/model/niaapi_nib_metadata_list_all_of.py index bfd3d8fdad..4d9c57e006 100644 --- a/intersight/model/niaapi_nib_metadata_list_all_of.py +++ b/intersight/model/niaapi_nib_metadata_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/niaapi_nib_metadata_response.py b/intersight/model/niaapi_nib_metadata_response.py index 55c8158915..9d94eee329 100644 --- a/intersight/model/niaapi_nib_metadata_response.py +++ b/intersight/model/niaapi_nib_metadata_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/niaapi_release_recommend.py b/intersight/model/niaapi_release_recommend.py index edc1f00e7c..54294cce44 100644 --- a/intersight/model/niaapi_release_recommend.py +++ b/intersight/model/niaapi_release_recommend.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_release_recommend_all_of.py b/intersight/model/niaapi_release_recommend_all_of.py index 65428aa700..5ae6b1f31d 100644 --- a/intersight/model/niaapi_release_recommend_all_of.py +++ b/intersight/model/niaapi_release_recommend_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_revision_info.py b/intersight/model/niaapi_revision_info.py index 8391368c2c..0a97fe5371 100644 --- a/intersight/model/niaapi_revision_info.py +++ b/intersight/model/niaapi_revision_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/niaapi_revision_info_all_of.py b/intersight/model/niaapi_revision_info_all_of.py index 27d332d912..963386474f 100644 --- a/intersight/model/niaapi_revision_info_all_of.py +++ b/intersight/model/niaapi_revision_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/niaapi_software_eol.py b/intersight/model/niaapi_software_eol.py index 4b6b8f35be..5401380b16 100644 --- a/intersight/model/niaapi_software_eol.py +++ b/intersight/model/niaapi_software_eol.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_software_eol_all_of.py b/intersight/model/niaapi_software_eol_all_of.py index 59222fc110..1a70c807a1 100644 --- a/intersight/model/niaapi_software_eol_all_of.py +++ b/intersight/model/niaapi_software_eol_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_software_regex.py b/intersight/model/niaapi_software_regex.py index d972b6563a..766d05b963 100644 --- a/intersight/model/niaapi_software_regex.py +++ b/intersight/model/niaapi_software_regex.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_software_regex_all_of.py b/intersight/model/niaapi_software_regex_all_of.py index 1f933ba96d..15229170b6 100644 --- a/intersight/model/niaapi_software_regex_all_of.py +++ b/intersight/model/niaapi_software_regex_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_version_regex.py b/intersight/model/niaapi_version_regex.py index 25968abaac..2fbf503afd 100644 --- a/intersight/model/niaapi_version_regex.py +++ b/intersight/model/niaapi_version_regex.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_version_regex_all_of.py b/intersight/model/niaapi_version_regex_all_of.py index 59aef125b4..2ca1463f59 100644 --- a/intersight/model/niaapi_version_regex_all_of.py +++ b/intersight/model/niaapi_version_regex_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_version_regex_list.py b/intersight/model/niaapi_version_regex_list.py index 35d62fc208..4e844eb9ba 100644 --- a/intersight/model/niaapi_version_regex_list.py +++ b/intersight/model/niaapi_version_regex_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/niaapi_version_regex_list_all_of.py b/intersight/model/niaapi_version_regex_list_all_of.py index 829666bfe3..58bc7907cd 100644 --- a/intersight/model/niaapi_version_regex_list_all_of.py +++ b/intersight/model/niaapi_version_regex_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/niaapi_version_regex_platform.py b/intersight/model/niaapi_version_regex_platform.py index fddc8ddc97..b686d2372c 100644 --- a/intersight/model/niaapi_version_regex_platform.py +++ b/intersight/model/niaapi_version_regex_platform.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_version_regex_platform_all_of.py b/intersight/model/niaapi_version_regex_platform_all_of.py index dfffddd4ec..2df5fb4b84 100644 --- a/intersight/model/niaapi_version_regex_platform_all_of.py +++ b/intersight/model/niaapi_version_regex_platform_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niaapi_version_regex_response.py b/intersight/model/niaapi_version_regex_response.py index 0421c26820..ff42611987 100644 --- a/intersight/model/niaapi_version_regex_response.py +++ b/intersight/model/niaapi_version_regex_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/niatelemetry_aaa_ldap_provider_details.py b/intersight/model/niatelemetry_aaa_ldap_provider_details.py index 660c8bb9dc..e446653909 100644 --- a/intersight/model/niatelemetry_aaa_ldap_provider_details.py +++ b/intersight/model/niatelemetry_aaa_ldap_provider_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 """ diff --git a/intersight/model/niatelemetry_aaa_ldap_provider_details_all_of.py b/intersight/model/niatelemetry_aaa_ldap_provider_details_all_of.py index 798dc4a1fa..61a85c5a7c 100644 --- a/intersight/model/niatelemetry_aaa_ldap_provider_details_all_of.py +++ b/intersight/model/niatelemetry_aaa_ldap_provider_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_aaa_ldap_provider_details_list.py b/intersight/model/niatelemetry_aaa_ldap_provider_details_list.py index 512fd88fa5..963c94bbe1 100644 --- a/intersight/model/niatelemetry_aaa_ldap_provider_details_list.py +++ b/intersight/model/niatelemetry_aaa_ldap_provider_details_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/niatelemetry_aaa_ldap_provider_details_list_all_of.py b/intersight/model/niatelemetry_aaa_ldap_provider_details_list_all_of.py index 338c13453b..45f9409a92 100644 --- a/intersight/model/niatelemetry_aaa_ldap_provider_details_list_all_of.py +++ b/intersight/model/niatelemetry_aaa_ldap_provider_details_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/niatelemetry_aaa_ldap_provider_details_response.py b/intersight/model/niatelemetry_aaa_ldap_provider_details_response.py index 6e5d0d0eee..3117619c1c 100644 --- a/intersight/model/niatelemetry_aaa_ldap_provider_details_response.py +++ b/intersight/model/niatelemetry_aaa_ldap_provider_details_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/niatelemetry_aaa_radius_provider_details.py b/intersight/model/niatelemetry_aaa_radius_provider_details.py index 34fcda7ed4..a84d5510bf 100644 --- a/intersight/model/niatelemetry_aaa_radius_provider_details.py +++ b/intersight/model/niatelemetry_aaa_radius_provider_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 """ diff --git a/intersight/model/niatelemetry_aaa_radius_provider_details_all_of.py b/intersight/model/niatelemetry_aaa_radius_provider_details_all_of.py index 9ccd5ce6c1..5038b20ab6 100644 --- a/intersight/model/niatelemetry_aaa_radius_provider_details_all_of.py +++ b/intersight/model/niatelemetry_aaa_radius_provider_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_aaa_radius_provider_details_list.py b/intersight/model/niatelemetry_aaa_radius_provider_details_list.py index edecc227be..f2a2bd3f0e 100644 --- a/intersight/model/niatelemetry_aaa_radius_provider_details_list.py +++ b/intersight/model/niatelemetry_aaa_radius_provider_details_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/niatelemetry_aaa_radius_provider_details_list_all_of.py b/intersight/model/niatelemetry_aaa_radius_provider_details_list_all_of.py index 8d04ce1ab8..e812bb3da1 100644 --- a/intersight/model/niatelemetry_aaa_radius_provider_details_list_all_of.py +++ b/intersight/model/niatelemetry_aaa_radius_provider_details_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/niatelemetry_aaa_radius_provider_details_response.py b/intersight/model/niatelemetry_aaa_radius_provider_details_response.py index 851fbb5636..869916d9a0 100644 --- a/intersight/model/niatelemetry_aaa_radius_provider_details_response.py +++ b/intersight/model/niatelemetry_aaa_radius_provider_details_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/niatelemetry_aaa_tacacs_provider_details.py b/intersight/model/niatelemetry_aaa_tacacs_provider_details.py index 11ec29f4e3..4de96a6516 100644 --- a/intersight/model/niatelemetry_aaa_tacacs_provider_details.py +++ b/intersight/model/niatelemetry_aaa_tacacs_provider_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 """ diff --git a/intersight/model/niatelemetry_aaa_tacacs_provider_details_all_of.py b/intersight/model/niatelemetry_aaa_tacacs_provider_details_all_of.py index 7ea02db49d..b059794f04 100644 --- a/intersight/model/niatelemetry_aaa_tacacs_provider_details_all_of.py +++ b/intersight/model/niatelemetry_aaa_tacacs_provider_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_aaa_tacacs_provider_details_list.py b/intersight/model/niatelemetry_aaa_tacacs_provider_details_list.py index 0910bd1ad4..73372e164b 100644 --- a/intersight/model/niatelemetry_aaa_tacacs_provider_details_list.py +++ b/intersight/model/niatelemetry_aaa_tacacs_provider_details_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/niatelemetry_aaa_tacacs_provider_details_list_all_of.py b/intersight/model/niatelemetry_aaa_tacacs_provider_details_list_all_of.py index 8ea74da3fa..3314ce8d30 100644 --- a/intersight/model/niatelemetry_aaa_tacacs_provider_details_list_all_of.py +++ b/intersight/model/niatelemetry_aaa_tacacs_provider_details_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/niatelemetry_aaa_tacacs_provider_details_response.py b/intersight/model/niatelemetry_aaa_tacacs_provider_details_response.py index aa1e687d55..339c759331 100644 --- a/intersight/model/niatelemetry_aaa_tacacs_provider_details_response.py +++ b/intersight/model/niatelemetry_aaa_tacacs_provider_details_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/niatelemetry_apic_core_file_details.py b/intersight/model/niatelemetry_apic_core_file_details.py index a85a5b6602..7c2efb5063 100644 --- a/intersight/model/niatelemetry_apic_core_file_details.py +++ b/intersight/model/niatelemetry_apic_core_file_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 """ diff --git a/intersight/model/niatelemetry_apic_core_file_details_all_of.py b/intersight/model/niatelemetry_apic_core_file_details_all_of.py index 4dd743ce41..7af85cf71c 100644 --- a/intersight/model/niatelemetry_apic_core_file_details_all_of.py +++ b/intersight/model/niatelemetry_apic_core_file_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_core_file_details_list.py b/intersight/model/niatelemetry_apic_core_file_details_list.py index 88b1129e65..4f24ec3204 100644 --- a/intersight/model/niatelemetry_apic_core_file_details_list.py +++ b/intersight/model/niatelemetry_apic_core_file_details_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/niatelemetry_apic_core_file_details_list_all_of.py b/intersight/model/niatelemetry_apic_core_file_details_list_all_of.py index bea837da1e..bf1cab2bb9 100644 --- a/intersight/model/niatelemetry_apic_core_file_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_core_file_details_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/niatelemetry_apic_core_file_details_response.py b/intersight/model/niatelemetry_apic_core_file_details_response.py index 944e4f5f05..c1600f151a 100644 --- a/intersight/model/niatelemetry_apic_core_file_details_response.py +++ b/intersight/model/niatelemetry_apic_core_file_details_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/niatelemetry_apic_dbgexp_rs_export_dest.py b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest.py index c7282907e9..3a5dd08a43 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_all_of.py b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_all_of.py index 3bf6484f45..77aa90656e 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_all_of.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_list.py b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_list.py index b6f8c59a7a..2a05f4fa04 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_list.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_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/niatelemetry_apic_dbgexp_rs_export_dest_list_all_of.py b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_list_all_of.py index f7fc7abd9c..11a174befe 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_list_all_of.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_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/niatelemetry_apic_dbgexp_rs_export_dest_response.py b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_response.py index eb59b78b36..0ca68d388d 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_response.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_export_dest_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/niatelemetry_apic_dbgexp_rs_ts_scheduler.py b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler.py index dbe830481b..576440e048 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_all_of.py b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_all_of.py index 8096d1d68d..df4fd94fb9 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_all_of.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_list.py b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_list.py index 3d6d3d73c4..4ef6919c46 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_list.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_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/niatelemetry_apic_dbgexp_rs_ts_scheduler_list_all_of.py b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_list_all_of.py index 3b4b0b3d65..6fcdb54033 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_list_all_of.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_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/niatelemetry_apic_dbgexp_rs_ts_scheduler_response.py b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_response.py index 8dd6b5f0ab..7234e6f7b0 100644 --- a/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_response.py +++ b/intersight/model/niatelemetry_apic_dbgexp_rs_ts_scheduler_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/niatelemetry_apic_fan_details.py b/intersight/model/niatelemetry_apic_fan_details.py index 302886c7bf..90102b9def 100644 --- a/intersight/model/niatelemetry_apic_fan_details.py +++ b/intersight/model/niatelemetry_apic_fan_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 """ diff --git a/intersight/model/niatelemetry_apic_fan_details_all_of.py b/intersight/model/niatelemetry_apic_fan_details_all_of.py index 51d00e21c9..3b05a8ef4e 100644 --- a/intersight/model/niatelemetry_apic_fan_details_all_of.py +++ b/intersight/model/niatelemetry_apic_fan_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_fan_details_list.py b/intersight/model/niatelemetry_apic_fan_details_list.py index fe62965f7a..5a2f3b62a8 100644 --- a/intersight/model/niatelemetry_apic_fan_details_list.py +++ b/intersight/model/niatelemetry_apic_fan_details_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/niatelemetry_apic_fan_details_list_all_of.py b/intersight/model/niatelemetry_apic_fan_details_list_all_of.py index 64740f374f..45dd754538 100644 --- a/intersight/model/niatelemetry_apic_fan_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_fan_details_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/niatelemetry_apic_fan_details_response.py b/intersight/model/niatelemetry_apic_fan_details_response.py index ba3d1a8d18..25004db1d9 100644 --- a/intersight/model/niatelemetry_apic_fan_details_response.py +++ b/intersight/model/niatelemetry_apic_fan_details_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/niatelemetry_apic_fex_details.py b/intersight/model/niatelemetry_apic_fex_details.py index c05757840a..808777ba79 100644 --- a/intersight/model/niatelemetry_apic_fex_details.py +++ b/intersight/model/niatelemetry_apic_fex_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 """ diff --git a/intersight/model/niatelemetry_apic_fex_details_all_of.py b/intersight/model/niatelemetry_apic_fex_details_all_of.py index 88a105fd6e..c08ebc36c6 100644 --- a/intersight/model/niatelemetry_apic_fex_details_all_of.py +++ b/intersight/model/niatelemetry_apic_fex_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_fex_details_list.py b/intersight/model/niatelemetry_apic_fex_details_list.py index 3e3d85eddf..29e4c127a0 100644 --- a/intersight/model/niatelemetry_apic_fex_details_list.py +++ b/intersight/model/niatelemetry_apic_fex_details_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/niatelemetry_apic_fex_details_list_all_of.py b/intersight/model/niatelemetry_apic_fex_details_list_all_of.py index c976cbf82c..a915037c35 100644 --- a/intersight/model/niatelemetry_apic_fex_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_fex_details_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/niatelemetry_apic_fex_details_response.py b/intersight/model/niatelemetry_apic_fex_details_response.py index f37ee07c51..2d73a0e47c 100644 --- a/intersight/model/niatelemetry_apic_fex_details_response.py +++ b/intersight/model/niatelemetry_apic_fex_details_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/niatelemetry_apic_flash_details.py b/intersight/model/niatelemetry_apic_flash_details.py index 8a43f382b9..c78b31b750 100644 --- a/intersight/model/niatelemetry_apic_flash_details.py +++ b/intersight/model/niatelemetry_apic_flash_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 """ diff --git a/intersight/model/niatelemetry_apic_flash_details_all_of.py b/intersight/model/niatelemetry_apic_flash_details_all_of.py index efd27aafdc..a70b6cda9e 100644 --- a/intersight/model/niatelemetry_apic_flash_details_all_of.py +++ b/intersight/model/niatelemetry_apic_flash_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_flash_details_list.py b/intersight/model/niatelemetry_apic_flash_details_list.py index 6dbd5bdf69..6bbd136d6d 100644 --- a/intersight/model/niatelemetry_apic_flash_details_list.py +++ b/intersight/model/niatelemetry_apic_flash_details_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/niatelemetry_apic_flash_details_list_all_of.py b/intersight/model/niatelemetry_apic_flash_details_list_all_of.py index a14027aa51..307a84f90a 100644 --- a/intersight/model/niatelemetry_apic_flash_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_flash_details_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/niatelemetry_apic_flash_details_response.py b/intersight/model/niatelemetry_apic_flash_details_response.py index c4dad4b014..b3ea0ae1cb 100644 --- a/intersight/model/niatelemetry_apic_flash_details_response.py +++ b/intersight/model/niatelemetry_apic_flash_details_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/niatelemetry_apic_ntp_auth.py b/intersight/model/niatelemetry_apic_ntp_auth.py index aa56b34d72..23588e5c5e 100644 --- a/intersight/model/niatelemetry_apic_ntp_auth.py +++ b/intersight/model/niatelemetry_apic_ntp_auth.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_ntp_auth_all_of.py b/intersight/model/niatelemetry_apic_ntp_auth_all_of.py index 1bc5b8dd33..5deba6a1d8 100644 --- a/intersight/model/niatelemetry_apic_ntp_auth_all_of.py +++ b/intersight/model/niatelemetry_apic_ntp_auth_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_ntp_auth_list.py b/intersight/model/niatelemetry_apic_ntp_auth_list.py index 94ce0042f2..856bc03455 100644 --- a/intersight/model/niatelemetry_apic_ntp_auth_list.py +++ b/intersight/model/niatelemetry_apic_ntp_auth_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/niatelemetry_apic_ntp_auth_list_all_of.py b/intersight/model/niatelemetry_apic_ntp_auth_list_all_of.py index 380a0b7d97..80fb18da4b 100644 --- a/intersight/model/niatelemetry_apic_ntp_auth_list_all_of.py +++ b/intersight/model/niatelemetry_apic_ntp_auth_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/niatelemetry_apic_ntp_auth_response.py b/intersight/model/niatelemetry_apic_ntp_auth_response.py index 7fff11fe6e..64f4529fc3 100644 --- a/intersight/model/niatelemetry_apic_ntp_auth_response.py +++ b/intersight/model/niatelemetry_apic_ntp_auth_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/niatelemetry_apic_psu_details.py b/intersight/model/niatelemetry_apic_psu_details.py index 792efd0430..09484538cb 100644 --- a/intersight/model/niatelemetry_apic_psu_details.py +++ b/intersight/model/niatelemetry_apic_psu_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 """ diff --git a/intersight/model/niatelemetry_apic_psu_details_all_of.py b/intersight/model/niatelemetry_apic_psu_details_all_of.py index ee5eb13c75..7219e806f4 100644 --- a/intersight/model/niatelemetry_apic_psu_details_all_of.py +++ b/intersight/model/niatelemetry_apic_psu_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_psu_details_list.py b/intersight/model/niatelemetry_apic_psu_details_list.py index b95315eb62..e3fbc1923d 100644 --- a/intersight/model/niatelemetry_apic_psu_details_list.py +++ b/intersight/model/niatelemetry_apic_psu_details_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/niatelemetry_apic_psu_details_list_all_of.py b/intersight/model/niatelemetry_apic_psu_details_list_all_of.py index bd6982a7c7..1367303893 100644 --- a/intersight/model/niatelemetry_apic_psu_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_psu_details_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/niatelemetry_apic_psu_details_response.py b/intersight/model/niatelemetry_apic_psu_details_response.py index 99d3c41eda..1df02f15ff 100644 --- a/intersight/model/niatelemetry_apic_psu_details_response.py +++ b/intersight/model/niatelemetry_apic_psu_details_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/niatelemetry_apic_realm_details.py b/intersight/model/niatelemetry_apic_realm_details.py index be828c46e9..57442a12fe 100644 --- a/intersight/model/niatelemetry_apic_realm_details.py +++ b/intersight/model/niatelemetry_apic_realm_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 """ diff --git a/intersight/model/niatelemetry_apic_realm_details_all_of.py b/intersight/model/niatelemetry_apic_realm_details_all_of.py index 6d49055942..4564025ff7 100644 --- a/intersight/model/niatelemetry_apic_realm_details_all_of.py +++ b/intersight/model/niatelemetry_apic_realm_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_realm_details_list.py b/intersight/model/niatelemetry_apic_realm_details_list.py index 92a6523707..853eda675f 100644 --- a/intersight/model/niatelemetry_apic_realm_details_list.py +++ b/intersight/model/niatelemetry_apic_realm_details_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/niatelemetry_apic_realm_details_list_all_of.py b/intersight/model/niatelemetry_apic_realm_details_list_all_of.py index 6328fe04bb..3edfcd1278 100644 --- a/intersight/model/niatelemetry_apic_realm_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_realm_details_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/niatelemetry_apic_realm_details_response.py b/intersight/model/niatelemetry_apic_realm_details_response.py index 19344eff5a..eea5b01a29 100644 --- a/intersight/model/niatelemetry_apic_realm_details_response.py +++ b/intersight/model/niatelemetry_apic_realm_details_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/niatelemetry_apic_snmp_community_access_details.py b/intersight/model/niatelemetry_apic_snmp_community_access_details.py index c80e0e18e0..d6f0dbe8e6 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_access_details.py +++ b/intersight/model/niatelemetry_apic_snmp_community_access_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 """ diff --git a/intersight/model/niatelemetry_apic_snmp_community_access_details_all_of.py b/intersight/model/niatelemetry_apic_snmp_community_access_details_all_of.py index c2d02176f8..ab4b80b238 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_access_details_all_of.py +++ b/intersight/model/niatelemetry_apic_snmp_community_access_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_snmp_community_access_details_list.py b/intersight/model/niatelemetry_apic_snmp_community_access_details_list.py index 21e21306ba..8f470eb125 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_access_details_list.py +++ b/intersight/model/niatelemetry_apic_snmp_community_access_details_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/niatelemetry_apic_snmp_community_access_details_list_all_of.py b/intersight/model/niatelemetry_apic_snmp_community_access_details_list_all_of.py index e389954be2..36430ffad5 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_access_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_snmp_community_access_details_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/niatelemetry_apic_snmp_community_access_details_response.py b/intersight/model/niatelemetry_apic_snmp_community_access_details_response.py index 29c20291c3..7970f0f0c6 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_access_details_response.py +++ b/intersight/model/niatelemetry_apic_snmp_community_access_details_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/niatelemetry_apic_snmp_community_details.py b/intersight/model/niatelemetry_apic_snmp_community_details.py index 0f9a96eb24..593bbbcd4b 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_details.py +++ b/intersight/model/niatelemetry_apic_snmp_community_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 """ diff --git a/intersight/model/niatelemetry_apic_snmp_community_details_all_of.py b/intersight/model/niatelemetry_apic_snmp_community_details_all_of.py index 1a738dc268..d5bee13fb2 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_details_all_of.py +++ b/intersight/model/niatelemetry_apic_snmp_community_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_snmp_community_details_list.py b/intersight/model/niatelemetry_apic_snmp_community_details_list.py index 3e2de1b954..d93839b6a5 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_details_list.py +++ b/intersight/model/niatelemetry_apic_snmp_community_details_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/niatelemetry_apic_snmp_community_details_list_all_of.py b/intersight/model/niatelemetry_apic_snmp_community_details_list_all_of.py index 90023e223d..0eb3609b71 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_snmp_community_details_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/niatelemetry_apic_snmp_community_details_response.py b/intersight/model/niatelemetry_apic_snmp_community_details_response.py index 10a25ef378..da352df871 100644 --- a/intersight/model/niatelemetry_apic_snmp_community_details_response.py +++ b/intersight/model/niatelemetry_apic_snmp_community_details_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/niatelemetry_apic_snmp_trap_details.py b/intersight/model/niatelemetry_apic_snmp_trap_details.py index 8c2e9d619f..902844b58c 100644 --- a/intersight/model/niatelemetry_apic_snmp_trap_details.py +++ b/intersight/model/niatelemetry_apic_snmp_trap_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 """ diff --git a/intersight/model/niatelemetry_apic_snmp_trap_details_all_of.py b/intersight/model/niatelemetry_apic_snmp_trap_details_all_of.py index 5df32c1af4..3ab3f24984 100644 --- a/intersight/model/niatelemetry_apic_snmp_trap_details_all_of.py +++ b/intersight/model/niatelemetry_apic_snmp_trap_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_snmp_trap_details_list.py b/intersight/model/niatelemetry_apic_snmp_trap_details_list.py index ab387c69a9..4f53315d57 100644 --- a/intersight/model/niatelemetry_apic_snmp_trap_details_list.py +++ b/intersight/model/niatelemetry_apic_snmp_trap_details_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/niatelemetry_apic_snmp_trap_details_list_all_of.py b/intersight/model/niatelemetry_apic_snmp_trap_details_list_all_of.py index 50cfc74dc6..ec04f537b8 100644 --- a/intersight/model/niatelemetry_apic_snmp_trap_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_snmp_trap_details_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/niatelemetry_apic_snmp_trap_details_response.py b/intersight/model/niatelemetry_apic_snmp_trap_details_response.py index 0fad45f327..3330b5f015 100644 --- a/intersight/model/niatelemetry_apic_snmp_trap_details_response.py +++ b/intersight/model/niatelemetry_apic_snmp_trap_details_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/niatelemetry_apic_snmp_version_three_details.py b/intersight/model/niatelemetry_apic_snmp_version_three_details.py index 200f978b72..9d33e46ea6 100644 --- a/intersight/model/niatelemetry_apic_snmp_version_three_details.py +++ b/intersight/model/niatelemetry_apic_snmp_version_three_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 """ diff --git a/intersight/model/niatelemetry_apic_snmp_version_three_details_all_of.py b/intersight/model/niatelemetry_apic_snmp_version_three_details_all_of.py index aa4ebe4813..df744947cb 100644 --- a/intersight/model/niatelemetry_apic_snmp_version_three_details_all_of.py +++ b/intersight/model/niatelemetry_apic_snmp_version_three_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_snmp_version_three_details_list.py b/intersight/model/niatelemetry_apic_snmp_version_three_details_list.py index bb3acebece..312012f4ac 100644 --- a/intersight/model/niatelemetry_apic_snmp_version_three_details_list.py +++ b/intersight/model/niatelemetry_apic_snmp_version_three_details_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/niatelemetry_apic_snmp_version_three_details_list_all_of.py b/intersight/model/niatelemetry_apic_snmp_version_three_details_list_all_of.py index 061148fb9a..687c2da1da 100644 --- a/intersight/model/niatelemetry_apic_snmp_version_three_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_snmp_version_three_details_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/niatelemetry_apic_snmp_version_three_details_response.py b/intersight/model/niatelemetry_apic_snmp_version_three_details_response.py index 2d2059e952..8a10219903 100644 --- a/intersight/model/niatelemetry_apic_snmp_version_three_details_response.py +++ b/intersight/model/niatelemetry_apic_snmp_version_three_details_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/niatelemetry_apic_sys_log_grp.py b/intersight/model/niatelemetry_apic_sys_log_grp.py index b1b9bf6bb8..e8a6a4aa8e 100644 --- a/intersight/model/niatelemetry_apic_sys_log_grp.py +++ b/intersight/model/niatelemetry_apic_sys_log_grp.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_sys_log_grp_all_of.py b/intersight/model/niatelemetry_apic_sys_log_grp_all_of.py index c54e98551e..cf7129d8e2 100644 --- a/intersight/model/niatelemetry_apic_sys_log_grp_all_of.py +++ b/intersight/model/niatelemetry_apic_sys_log_grp_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_sys_log_grp_list.py b/intersight/model/niatelemetry_apic_sys_log_grp_list.py index 69833d74ce..dc0d7721dc 100644 --- a/intersight/model/niatelemetry_apic_sys_log_grp_list.py +++ b/intersight/model/niatelemetry_apic_sys_log_grp_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/niatelemetry_apic_sys_log_grp_list_all_of.py b/intersight/model/niatelemetry_apic_sys_log_grp_list_all_of.py index 6dd0407d7e..8eca8bfa87 100644 --- a/intersight/model/niatelemetry_apic_sys_log_grp_list_all_of.py +++ b/intersight/model/niatelemetry_apic_sys_log_grp_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/niatelemetry_apic_sys_log_grp_response.py b/intersight/model/niatelemetry_apic_sys_log_grp_response.py index c2f015a292..1b21c800a4 100644 --- a/intersight/model/niatelemetry_apic_sys_log_grp_response.py +++ b/intersight/model/niatelemetry_apic_sys_log_grp_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/niatelemetry_apic_sys_log_src.py b/intersight/model/niatelemetry_apic_sys_log_src.py index b51d4a9bb0..0673b6f03f 100644 --- a/intersight/model/niatelemetry_apic_sys_log_src.py +++ b/intersight/model/niatelemetry_apic_sys_log_src.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_sys_log_src_all_of.py b/intersight/model/niatelemetry_apic_sys_log_src_all_of.py index ec6a45a65a..0fec4128bf 100644 --- a/intersight/model/niatelemetry_apic_sys_log_src_all_of.py +++ b/intersight/model/niatelemetry_apic_sys_log_src_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_sys_log_src_list.py b/intersight/model/niatelemetry_apic_sys_log_src_list.py index f2c33ceb1d..a6cf1535ab 100644 --- a/intersight/model/niatelemetry_apic_sys_log_src_list.py +++ b/intersight/model/niatelemetry_apic_sys_log_src_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/niatelemetry_apic_sys_log_src_list_all_of.py b/intersight/model/niatelemetry_apic_sys_log_src_list_all_of.py index b2d161cbe1..0ee0d3a7be 100644 --- a/intersight/model/niatelemetry_apic_sys_log_src_list_all_of.py +++ b/intersight/model/niatelemetry_apic_sys_log_src_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/niatelemetry_apic_sys_log_src_response.py b/intersight/model/niatelemetry_apic_sys_log_src_response.py index fe5eda91e1..0b87941b26 100644 --- a/intersight/model/niatelemetry_apic_sys_log_src_response.py +++ b/intersight/model/niatelemetry_apic_sys_log_src_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/niatelemetry_apic_transceiver_details.py b/intersight/model/niatelemetry_apic_transceiver_details.py index b434c5a906..54213f6ff7 100644 --- a/intersight/model/niatelemetry_apic_transceiver_details.py +++ b/intersight/model/niatelemetry_apic_transceiver_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 """ diff --git a/intersight/model/niatelemetry_apic_transceiver_details_all_of.py b/intersight/model/niatelemetry_apic_transceiver_details_all_of.py index ae014751ab..ce98121452 100644 --- a/intersight/model/niatelemetry_apic_transceiver_details_all_of.py +++ b/intersight/model/niatelemetry_apic_transceiver_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_transceiver_details_list.py b/intersight/model/niatelemetry_apic_transceiver_details_list.py index 28aa4695cb..cbf07b6576 100644 --- a/intersight/model/niatelemetry_apic_transceiver_details_list.py +++ b/intersight/model/niatelemetry_apic_transceiver_details_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/niatelemetry_apic_transceiver_details_list_all_of.py b/intersight/model/niatelemetry_apic_transceiver_details_list_all_of.py index 51298adad6..201e8df28e 100644 --- a/intersight/model/niatelemetry_apic_transceiver_details_list_all_of.py +++ b/intersight/model/niatelemetry_apic_transceiver_details_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/niatelemetry_apic_transceiver_details_response.py b/intersight/model/niatelemetry_apic_transceiver_details_response.py index f0adb29b25..08364e3e93 100644 --- a/intersight/model/niatelemetry_apic_transceiver_details_response.py +++ b/intersight/model/niatelemetry_apic_transceiver_details_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/niatelemetry_apic_ui_page_counts.py b/intersight/model/niatelemetry_apic_ui_page_counts.py index 49f2a79f0d..0dc40a7716 100644 --- a/intersight/model/niatelemetry_apic_ui_page_counts.py +++ b/intersight/model/niatelemetry_apic_ui_page_counts.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_ui_page_counts_all_of.py b/intersight/model/niatelemetry_apic_ui_page_counts_all_of.py index 25e2736c86..0a9c5d1619 100644 --- a/intersight/model/niatelemetry_apic_ui_page_counts_all_of.py +++ b/intersight/model/niatelemetry_apic_ui_page_counts_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_apic_ui_page_counts_list.py b/intersight/model/niatelemetry_apic_ui_page_counts_list.py index bbce5b7bad..5bc0037ac1 100644 --- a/intersight/model/niatelemetry_apic_ui_page_counts_list.py +++ b/intersight/model/niatelemetry_apic_ui_page_counts_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/niatelemetry_apic_ui_page_counts_list_all_of.py b/intersight/model/niatelemetry_apic_ui_page_counts_list_all_of.py index a4adf06398..0a722cbb85 100644 --- a/intersight/model/niatelemetry_apic_ui_page_counts_list_all_of.py +++ b/intersight/model/niatelemetry_apic_ui_page_counts_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/niatelemetry_apic_ui_page_counts_response.py b/intersight/model/niatelemetry_apic_ui_page_counts_response.py index f55abf79dd..2e4fff4507 100644 --- a/intersight/model/niatelemetry_apic_ui_page_counts_response.py +++ b/intersight/model/niatelemetry_apic_ui_page_counts_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/niatelemetry_app_details.py b/intersight/model/niatelemetry_app_details.py index 44c63ab210..d0bf98d303 100644 --- a/intersight/model/niatelemetry_app_details.py +++ b/intersight/model/niatelemetry_app_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 """ diff --git a/intersight/model/niatelemetry_app_details_all_of.py b/intersight/model/niatelemetry_app_details_all_of.py index e064a0d1bf..04399324bf 100644 --- a/intersight/model/niatelemetry_app_details_all_of.py +++ b/intersight/model/niatelemetry_app_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_app_details_list.py b/intersight/model/niatelemetry_app_details_list.py index fa3dfb93c6..d787db7cec 100644 --- a/intersight/model/niatelemetry_app_details_list.py +++ b/intersight/model/niatelemetry_app_details_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/niatelemetry_app_details_list_all_of.py b/intersight/model/niatelemetry_app_details_list_all_of.py index cdeb02b1ca..bb716d3b96 100644 --- a/intersight/model/niatelemetry_app_details_list_all_of.py +++ b/intersight/model/niatelemetry_app_details_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/niatelemetry_app_details_response.py b/intersight/model/niatelemetry_app_details_response.py index 3d0e3b9f18..080cb8031b 100644 --- a/intersight/model/niatelemetry_app_details_response.py +++ b/intersight/model/niatelemetry_app_details_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/niatelemetry_bootflash_details.py b/intersight/model/niatelemetry_bootflash_details.py index b061998a95..f46a955f60 100644 --- a/intersight/model/niatelemetry_bootflash_details.py +++ b/intersight/model/niatelemetry_bootflash_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 """ diff --git a/intersight/model/niatelemetry_bootflash_details_all_of.py b/intersight/model/niatelemetry_bootflash_details_all_of.py index 3113499d03..e17188f800 100644 --- a/intersight/model/niatelemetry_bootflash_details_all_of.py +++ b/intersight/model/niatelemetry_bootflash_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_dcnm_fan_details.py b/intersight/model/niatelemetry_dcnm_fan_details.py index 2370da03c6..f47ef5b3fd 100644 --- a/intersight/model/niatelemetry_dcnm_fan_details.py +++ b/intersight/model/niatelemetry_dcnm_fan_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 """ diff --git a/intersight/model/niatelemetry_dcnm_fan_details_all_of.py b/intersight/model/niatelemetry_dcnm_fan_details_all_of.py index 5929cd7906..db90f07252 100644 --- a/intersight/model/niatelemetry_dcnm_fan_details_all_of.py +++ b/intersight/model/niatelemetry_dcnm_fan_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_dcnm_fan_details_list.py b/intersight/model/niatelemetry_dcnm_fan_details_list.py index a695a65e37..446edda795 100644 --- a/intersight/model/niatelemetry_dcnm_fan_details_list.py +++ b/intersight/model/niatelemetry_dcnm_fan_details_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/niatelemetry_dcnm_fan_details_list_all_of.py b/intersight/model/niatelemetry_dcnm_fan_details_list_all_of.py index dce5e44e66..c3ecc6acea 100644 --- a/intersight/model/niatelemetry_dcnm_fan_details_list_all_of.py +++ b/intersight/model/niatelemetry_dcnm_fan_details_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/niatelemetry_dcnm_fan_details_response.py b/intersight/model/niatelemetry_dcnm_fan_details_response.py index 36d2b1d695..5146ec00e8 100644 --- a/intersight/model/niatelemetry_dcnm_fan_details_response.py +++ b/intersight/model/niatelemetry_dcnm_fan_details_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/niatelemetry_dcnm_fex_details.py b/intersight/model/niatelemetry_dcnm_fex_details.py index 87287cf363..c25f7e12a8 100644 --- a/intersight/model/niatelemetry_dcnm_fex_details.py +++ b/intersight/model/niatelemetry_dcnm_fex_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 """ diff --git a/intersight/model/niatelemetry_dcnm_fex_details_all_of.py b/intersight/model/niatelemetry_dcnm_fex_details_all_of.py index 505bf35e5f..c168993b9a 100644 --- a/intersight/model/niatelemetry_dcnm_fex_details_all_of.py +++ b/intersight/model/niatelemetry_dcnm_fex_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_dcnm_fex_details_list.py b/intersight/model/niatelemetry_dcnm_fex_details_list.py index 84a9a77fb2..c3fd6c1a7d 100644 --- a/intersight/model/niatelemetry_dcnm_fex_details_list.py +++ b/intersight/model/niatelemetry_dcnm_fex_details_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/niatelemetry_dcnm_fex_details_list_all_of.py b/intersight/model/niatelemetry_dcnm_fex_details_list_all_of.py index 43ed68fe72..efa0395e9b 100644 --- a/intersight/model/niatelemetry_dcnm_fex_details_list_all_of.py +++ b/intersight/model/niatelemetry_dcnm_fex_details_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/niatelemetry_dcnm_fex_details_response.py b/intersight/model/niatelemetry_dcnm_fex_details_response.py index 748087a1c9..c03b845790 100644 --- a/intersight/model/niatelemetry_dcnm_fex_details_response.py +++ b/intersight/model/niatelemetry_dcnm_fex_details_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/niatelemetry_dcnm_module_details.py b/intersight/model/niatelemetry_dcnm_module_details.py index 265206fe9d..f2ca5fc766 100644 --- a/intersight/model/niatelemetry_dcnm_module_details.py +++ b/intersight/model/niatelemetry_dcnm_module_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 """ diff --git a/intersight/model/niatelemetry_dcnm_module_details_all_of.py b/intersight/model/niatelemetry_dcnm_module_details_all_of.py index d23a8b338d..2256f45f12 100644 --- a/intersight/model/niatelemetry_dcnm_module_details_all_of.py +++ b/intersight/model/niatelemetry_dcnm_module_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_dcnm_module_details_list.py b/intersight/model/niatelemetry_dcnm_module_details_list.py index 3b0a954c8f..64c073c3f9 100644 --- a/intersight/model/niatelemetry_dcnm_module_details_list.py +++ b/intersight/model/niatelemetry_dcnm_module_details_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/niatelemetry_dcnm_module_details_list_all_of.py b/intersight/model/niatelemetry_dcnm_module_details_list_all_of.py index eb678bac54..73d68a95e5 100644 --- a/intersight/model/niatelemetry_dcnm_module_details_list_all_of.py +++ b/intersight/model/niatelemetry_dcnm_module_details_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/niatelemetry_dcnm_module_details_response.py b/intersight/model/niatelemetry_dcnm_module_details_response.py index 456ce2254c..bb78222e6c 100644 --- a/intersight/model/niatelemetry_dcnm_module_details_response.py +++ b/intersight/model/niatelemetry_dcnm_module_details_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/niatelemetry_dcnm_psu_details.py b/intersight/model/niatelemetry_dcnm_psu_details.py index 5598508466..8c1141b44b 100644 --- a/intersight/model/niatelemetry_dcnm_psu_details.py +++ b/intersight/model/niatelemetry_dcnm_psu_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 """ diff --git a/intersight/model/niatelemetry_dcnm_psu_details_all_of.py b/intersight/model/niatelemetry_dcnm_psu_details_all_of.py index 9afffb8446..22461958b9 100644 --- a/intersight/model/niatelemetry_dcnm_psu_details_all_of.py +++ b/intersight/model/niatelemetry_dcnm_psu_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_dcnm_psu_details_list.py b/intersight/model/niatelemetry_dcnm_psu_details_list.py index 2c503706a3..6f6bc191bc 100644 --- a/intersight/model/niatelemetry_dcnm_psu_details_list.py +++ b/intersight/model/niatelemetry_dcnm_psu_details_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/niatelemetry_dcnm_psu_details_list_all_of.py b/intersight/model/niatelemetry_dcnm_psu_details_list_all_of.py index f2fc3faa25..8bc7bd867c 100644 --- a/intersight/model/niatelemetry_dcnm_psu_details_list_all_of.py +++ b/intersight/model/niatelemetry_dcnm_psu_details_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/niatelemetry_dcnm_psu_details_response.py b/intersight/model/niatelemetry_dcnm_psu_details_response.py index 2c5a1c1354..d32bf8511b 100644 --- a/intersight/model/niatelemetry_dcnm_psu_details_response.py +++ b/intersight/model/niatelemetry_dcnm_psu_details_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/niatelemetry_dcnm_transceiver_details.py b/intersight/model/niatelemetry_dcnm_transceiver_details.py index ff55940441..a3e9e2e280 100644 --- a/intersight/model/niatelemetry_dcnm_transceiver_details.py +++ b/intersight/model/niatelemetry_dcnm_transceiver_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 """ diff --git a/intersight/model/niatelemetry_dcnm_transceiver_details_all_of.py b/intersight/model/niatelemetry_dcnm_transceiver_details_all_of.py index beb61900e3..bc626bb977 100644 --- a/intersight/model/niatelemetry_dcnm_transceiver_details_all_of.py +++ b/intersight/model/niatelemetry_dcnm_transceiver_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_dcnm_transceiver_details_list.py b/intersight/model/niatelemetry_dcnm_transceiver_details_list.py index a9aafb5ca3..ad318e9dc8 100644 --- a/intersight/model/niatelemetry_dcnm_transceiver_details_list.py +++ b/intersight/model/niatelemetry_dcnm_transceiver_details_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/niatelemetry_dcnm_transceiver_details_list_all_of.py b/intersight/model/niatelemetry_dcnm_transceiver_details_list_all_of.py index 0202a8cce6..883b549dee 100644 --- a/intersight/model/niatelemetry_dcnm_transceiver_details_list_all_of.py +++ b/intersight/model/niatelemetry_dcnm_transceiver_details_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/niatelemetry_dcnm_transceiver_details_response.py b/intersight/model/niatelemetry_dcnm_transceiver_details_response.py index 829605e1fc..30c2e55bcb 100644 --- a/intersight/model/niatelemetry_dcnm_transceiver_details_response.py +++ b/intersight/model/niatelemetry_dcnm_transceiver_details_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/niatelemetry_diskinfo.py b/intersight/model/niatelemetry_diskinfo.py index b80f78901f..59f6f27b33 100644 --- a/intersight/model/niatelemetry_diskinfo.py +++ b/intersight/model/niatelemetry_diskinfo.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_diskinfo_all_of.py b/intersight/model/niatelemetry_diskinfo_all_of.py index e2a5df7506..11b668af4f 100644 --- a/intersight/model/niatelemetry_diskinfo_all_of.py +++ b/intersight/model/niatelemetry_diskinfo_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_epg.py b/intersight/model/niatelemetry_epg.py index 6c6924b6b5..9dfb65c21d 100644 --- a/intersight/model/niatelemetry_epg.py +++ b/intersight/model/niatelemetry_epg.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_epg_all_of.py b/intersight/model/niatelemetry_epg_all_of.py index 3ad6dd0c68..abb4b9ea34 100644 --- a/intersight/model/niatelemetry_epg_all_of.py +++ b/intersight/model/niatelemetry_epg_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_epg_list.py b/intersight/model/niatelemetry_epg_list.py index a0e13e4982..477c382be8 100644 --- a/intersight/model/niatelemetry_epg_list.py +++ b/intersight/model/niatelemetry_epg_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/niatelemetry_epg_list_all_of.py b/intersight/model/niatelemetry_epg_list_all_of.py index 7a946c5180..6871f5b859 100644 --- a/intersight/model/niatelemetry_epg_list_all_of.py +++ b/intersight/model/niatelemetry_epg_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/niatelemetry_epg_response.py b/intersight/model/niatelemetry_epg_response.py index 5434b136ea..896ba7bcd8 100644 --- a/intersight/model/niatelemetry_epg_response.py +++ b/intersight/model/niatelemetry_epg_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/niatelemetry_fabric_module_details.py b/intersight/model/niatelemetry_fabric_module_details.py index 4eb654bcfe..2b3c4d6fb9 100644 --- a/intersight/model/niatelemetry_fabric_module_details.py +++ b/intersight/model/niatelemetry_fabric_module_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 """ diff --git a/intersight/model/niatelemetry_fabric_module_details_all_of.py b/intersight/model/niatelemetry_fabric_module_details_all_of.py index 30ab2ecd16..3daecef1c8 100644 --- a/intersight/model/niatelemetry_fabric_module_details_all_of.py +++ b/intersight/model/niatelemetry_fabric_module_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_fabric_module_details_list.py b/intersight/model/niatelemetry_fabric_module_details_list.py index 559c515219..5d9633b616 100644 --- a/intersight/model/niatelemetry_fabric_module_details_list.py +++ b/intersight/model/niatelemetry_fabric_module_details_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/niatelemetry_fabric_module_details_list_all_of.py b/intersight/model/niatelemetry_fabric_module_details_list_all_of.py index a80224d68f..f8f6bfb819 100644 --- a/intersight/model/niatelemetry_fabric_module_details_list_all_of.py +++ b/intersight/model/niatelemetry_fabric_module_details_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/niatelemetry_fabric_module_details_response.py b/intersight/model/niatelemetry_fabric_module_details_response.py index bad05da288..1a28930dcb 100644 --- a/intersight/model/niatelemetry_fabric_module_details_response.py +++ b/intersight/model/niatelemetry_fabric_module_details_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/niatelemetry_fault.py b/intersight/model/niatelemetry_fault.py index 09e5615c6f..f075308de9 100644 --- a/intersight/model/niatelemetry_fault.py +++ b/intersight/model/niatelemetry_fault.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_fault_all_of.py b/intersight/model/niatelemetry_fault_all_of.py index cf5592b72d..72b7648d64 100644 --- a/intersight/model/niatelemetry_fault_all_of.py +++ b/intersight/model/niatelemetry_fault_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_fault_list.py b/intersight/model/niatelemetry_fault_list.py index 47b7a7ca9d..b8d22c34ff 100644 --- a/intersight/model/niatelemetry_fault_list.py +++ b/intersight/model/niatelemetry_fault_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/niatelemetry_fault_list_all_of.py b/intersight/model/niatelemetry_fault_list_all_of.py index 61e827110e..13bbb0a17c 100644 --- a/intersight/model/niatelemetry_fault_list_all_of.py +++ b/intersight/model/niatelemetry_fault_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/niatelemetry_fault_response.py b/intersight/model/niatelemetry_fault_response.py index 1ca511b611..87bcddb2d3 100644 --- a/intersight/model/niatelemetry_fault_response.py +++ b/intersight/model/niatelemetry_fault_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/niatelemetry_https_acl_contract_details.py b/intersight/model/niatelemetry_https_acl_contract_details.py index 24067211c5..a0836a5a75 100644 --- a/intersight/model/niatelemetry_https_acl_contract_details.py +++ b/intersight/model/niatelemetry_https_acl_contract_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 """ diff --git a/intersight/model/niatelemetry_https_acl_contract_details_all_of.py b/intersight/model/niatelemetry_https_acl_contract_details_all_of.py index d2ea2685e4..71f91f2002 100644 --- a/intersight/model/niatelemetry_https_acl_contract_details_all_of.py +++ b/intersight/model/niatelemetry_https_acl_contract_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_https_acl_contract_details_list.py b/intersight/model/niatelemetry_https_acl_contract_details_list.py index 3bdaa634f4..9cbfca1f07 100644 --- a/intersight/model/niatelemetry_https_acl_contract_details_list.py +++ b/intersight/model/niatelemetry_https_acl_contract_details_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/niatelemetry_https_acl_contract_details_list_all_of.py b/intersight/model/niatelemetry_https_acl_contract_details_list_all_of.py index a62c3e586c..419b7931d6 100644 --- a/intersight/model/niatelemetry_https_acl_contract_details_list_all_of.py +++ b/intersight/model/niatelemetry_https_acl_contract_details_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/niatelemetry_https_acl_contract_details_response.py b/intersight/model/niatelemetry_https_acl_contract_details_response.py index d907922986..304342131a 100644 --- a/intersight/model/niatelemetry_https_acl_contract_details_response.py +++ b/intersight/model/niatelemetry_https_acl_contract_details_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/niatelemetry_https_acl_contract_filter_map.py b/intersight/model/niatelemetry_https_acl_contract_filter_map.py index 4cf35d6a9d..c13bd24096 100644 --- a/intersight/model/niatelemetry_https_acl_contract_filter_map.py +++ b/intersight/model/niatelemetry_https_acl_contract_filter_map.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_https_acl_contract_filter_map_all_of.py b/intersight/model/niatelemetry_https_acl_contract_filter_map_all_of.py index 29f9b08af1..cc4d1010ae 100644 --- a/intersight/model/niatelemetry_https_acl_contract_filter_map_all_of.py +++ b/intersight/model/niatelemetry_https_acl_contract_filter_map_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_https_acl_contract_filter_map_list.py b/intersight/model/niatelemetry_https_acl_contract_filter_map_list.py index c6ffd19bf6..53ba07148c 100644 --- a/intersight/model/niatelemetry_https_acl_contract_filter_map_list.py +++ b/intersight/model/niatelemetry_https_acl_contract_filter_map_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/niatelemetry_https_acl_contract_filter_map_list_all_of.py b/intersight/model/niatelemetry_https_acl_contract_filter_map_list_all_of.py index 5ad48c1f4d..06bc5fab98 100644 --- a/intersight/model/niatelemetry_https_acl_contract_filter_map_list_all_of.py +++ b/intersight/model/niatelemetry_https_acl_contract_filter_map_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/niatelemetry_https_acl_contract_filter_map_response.py b/intersight/model/niatelemetry_https_acl_contract_filter_map_response.py index 7b610f544a..699f0a3f12 100644 --- a/intersight/model/niatelemetry_https_acl_contract_filter_map_response.py +++ b/intersight/model/niatelemetry_https_acl_contract_filter_map_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/niatelemetry_https_acl_epg_contract_map.py b/intersight/model/niatelemetry_https_acl_epg_contract_map.py index 79c9174625..42e6bd0b72 100644 --- a/intersight/model/niatelemetry_https_acl_epg_contract_map.py +++ b/intersight/model/niatelemetry_https_acl_epg_contract_map.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_https_acl_epg_contract_map_all_of.py b/intersight/model/niatelemetry_https_acl_epg_contract_map_all_of.py index b7582d3420..c8979ea9b3 100644 --- a/intersight/model/niatelemetry_https_acl_epg_contract_map_all_of.py +++ b/intersight/model/niatelemetry_https_acl_epg_contract_map_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_https_acl_epg_contract_map_list.py b/intersight/model/niatelemetry_https_acl_epg_contract_map_list.py index 8963ec6c9f..e206e630bf 100644 --- a/intersight/model/niatelemetry_https_acl_epg_contract_map_list.py +++ b/intersight/model/niatelemetry_https_acl_epg_contract_map_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/niatelemetry_https_acl_epg_contract_map_list_all_of.py b/intersight/model/niatelemetry_https_acl_epg_contract_map_list_all_of.py index b0145b3f71..7bf12c868d 100644 --- a/intersight/model/niatelemetry_https_acl_epg_contract_map_list_all_of.py +++ b/intersight/model/niatelemetry_https_acl_epg_contract_map_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/niatelemetry_https_acl_epg_contract_map_response.py b/intersight/model/niatelemetry_https_acl_epg_contract_map_response.py index 314e57d48a..d650459021 100644 --- a/intersight/model/niatelemetry_https_acl_epg_contract_map_response.py +++ b/intersight/model/niatelemetry_https_acl_epg_contract_map_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/niatelemetry_https_acl_epg_details.py b/intersight/model/niatelemetry_https_acl_epg_details.py index c00ed6a836..f57219dc86 100644 --- a/intersight/model/niatelemetry_https_acl_epg_details.py +++ b/intersight/model/niatelemetry_https_acl_epg_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 """ diff --git a/intersight/model/niatelemetry_https_acl_epg_details_all_of.py b/intersight/model/niatelemetry_https_acl_epg_details_all_of.py index 4eacee4048..cc0e547ef1 100644 --- a/intersight/model/niatelemetry_https_acl_epg_details_all_of.py +++ b/intersight/model/niatelemetry_https_acl_epg_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_https_acl_epg_details_list.py b/intersight/model/niatelemetry_https_acl_epg_details_list.py index 7bb7a1d8b4..812efa5c6c 100644 --- a/intersight/model/niatelemetry_https_acl_epg_details_list.py +++ b/intersight/model/niatelemetry_https_acl_epg_details_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/niatelemetry_https_acl_epg_details_list_all_of.py b/intersight/model/niatelemetry_https_acl_epg_details_list_all_of.py index ff353e1221..5230e08d24 100644 --- a/intersight/model/niatelemetry_https_acl_epg_details_list_all_of.py +++ b/intersight/model/niatelemetry_https_acl_epg_details_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/niatelemetry_https_acl_epg_details_response.py b/intersight/model/niatelemetry_https_acl_epg_details_response.py index 37c3458194..d2e7e30b64 100644 --- a/intersight/model/niatelemetry_https_acl_epg_details_response.py +++ b/intersight/model/niatelemetry_https_acl_epg_details_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/niatelemetry_https_acl_filter_details.py b/intersight/model/niatelemetry_https_acl_filter_details.py index 2e7e2d964b..8fd903ba12 100644 --- a/intersight/model/niatelemetry_https_acl_filter_details.py +++ b/intersight/model/niatelemetry_https_acl_filter_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 """ diff --git a/intersight/model/niatelemetry_https_acl_filter_details_all_of.py b/intersight/model/niatelemetry_https_acl_filter_details_all_of.py index be7cb7caed..e0608e0d5c 100644 --- a/intersight/model/niatelemetry_https_acl_filter_details_all_of.py +++ b/intersight/model/niatelemetry_https_acl_filter_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_https_acl_filter_details_list.py b/intersight/model/niatelemetry_https_acl_filter_details_list.py index d4df1a9a00..29ab6d761b 100644 --- a/intersight/model/niatelemetry_https_acl_filter_details_list.py +++ b/intersight/model/niatelemetry_https_acl_filter_details_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/niatelemetry_https_acl_filter_details_list_all_of.py b/intersight/model/niatelemetry_https_acl_filter_details_list_all_of.py index 57532f96ed..c2eca548aa 100644 --- a/intersight/model/niatelemetry_https_acl_filter_details_list_all_of.py +++ b/intersight/model/niatelemetry_https_acl_filter_details_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/niatelemetry_https_acl_filter_details_response.py b/intersight/model/niatelemetry_https_acl_filter_details_response.py index 44d3e772d3..250bd913f9 100644 --- a/intersight/model/niatelemetry_https_acl_filter_details_response.py +++ b/intersight/model/niatelemetry_https_acl_filter_details_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/niatelemetry_interface.py b/intersight/model/niatelemetry_interface.py index 8c91c43850..5c3c013d49 100644 --- a/intersight/model/niatelemetry_interface.py +++ b/intersight/model/niatelemetry_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/niatelemetry_interface_all_of.py b/intersight/model/niatelemetry_interface_all_of.py index 397b8d8ef6..82c38c917c 100644 --- a/intersight/model/niatelemetry_interface_all_of.py +++ b/intersight/model/niatelemetry_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/niatelemetry_interface_element.py b/intersight/model/niatelemetry_interface_element.py index 9846957fbb..c0ae4c3ec8 100644 --- a/intersight/model/niatelemetry_interface_element.py +++ b/intersight/model/niatelemetry_interface_element.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_interface_element_all_of.py b/intersight/model/niatelemetry_interface_element_all_of.py index f2ef6fe8cb..d2a5380250 100644 --- a/intersight/model/niatelemetry_interface_element_all_of.py +++ b/intersight/model/niatelemetry_interface_element_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_lc.py b/intersight/model/niatelemetry_lc.py index 88102014b7..1e828c1bd7 100644 --- a/intersight/model/niatelemetry_lc.py +++ b/intersight/model/niatelemetry_lc.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_lc_all_of.py b/intersight/model/niatelemetry_lc_all_of.py index 20ae6289ed..b03f78024d 100644 --- a/intersight/model/niatelemetry_lc_all_of.py +++ b/intersight/model/niatelemetry_lc_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_lc_list.py b/intersight/model/niatelemetry_lc_list.py index eb303baa65..43697245ce 100644 --- a/intersight/model/niatelemetry_lc_list.py +++ b/intersight/model/niatelemetry_lc_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/niatelemetry_lc_list_all_of.py b/intersight/model/niatelemetry_lc_list_all_of.py index 086f53e987..eb710851f9 100644 --- a/intersight/model/niatelemetry_lc_list_all_of.py +++ b/intersight/model/niatelemetry_lc_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/niatelemetry_lc_response.py b/intersight/model/niatelemetry_lc_response.py index 389bab0466..74a25009cb 100644 --- a/intersight/model/niatelemetry_lc_response.py +++ b/intersight/model/niatelemetry_lc_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/niatelemetry_logical_link.py b/intersight/model/niatelemetry_logical_link.py index f5629fc735..8577d8157d 100644 --- a/intersight/model/niatelemetry_logical_link.py +++ b/intersight/model/niatelemetry_logical_link.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_logical_link_all_of.py b/intersight/model/niatelemetry_logical_link_all_of.py index f2fdf0f51a..0de0c75335 100644 --- a/intersight/model/niatelemetry_logical_link_all_of.py +++ b/intersight/model/niatelemetry_logical_link_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_mso_contract_details.py b/intersight/model/niatelemetry_mso_contract_details.py index 2563e8c301..d69568d45d 100644 --- a/intersight/model/niatelemetry_mso_contract_details.py +++ b/intersight/model/niatelemetry_mso_contract_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 """ diff --git a/intersight/model/niatelemetry_mso_contract_details_all_of.py b/intersight/model/niatelemetry_mso_contract_details_all_of.py index 985845e615..a6d04f9c8e 100644 --- a/intersight/model/niatelemetry_mso_contract_details_all_of.py +++ b/intersight/model/niatelemetry_mso_contract_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_mso_contract_details_list.py b/intersight/model/niatelemetry_mso_contract_details_list.py index 6bfd56f3f5..5346923ba0 100644 --- a/intersight/model/niatelemetry_mso_contract_details_list.py +++ b/intersight/model/niatelemetry_mso_contract_details_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/niatelemetry_mso_contract_details_list_all_of.py b/intersight/model/niatelemetry_mso_contract_details_list_all_of.py index a1f8afc0ba..7755329a6f 100644 --- a/intersight/model/niatelemetry_mso_contract_details_list_all_of.py +++ b/intersight/model/niatelemetry_mso_contract_details_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/niatelemetry_mso_contract_details_response.py b/intersight/model/niatelemetry_mso_contract_details_response.py index 30f1d7574f..c3e901c682 100644 --- a/intersight/model/niatelemetry_mso_contract_details_response.py +++ b/intersight/model/niatelemetry_mso_contract_details_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/niatelemetry_mso_epg_details.py b/intersight/model/niatelemetry_mso_epg_details.py index c13c9dfa04..66e8f34ee1 100644 --- a/intersight/model/niatelemetry_mso_epg_details.py +++ b/intersight/model/niatelemetry_mso_epg_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 """ diff --git a/intersight/model/niatelemetry_mso_epg_details_all_of.py b/intersight/model/niatelemetry_mso_epg_details_all_of.py index b474d5f649..ce95fdb184 100644 --- a/intersight/model/niatelemetry_mso_epg_details_all_of.py +++ b/intersight/model/niatelemetry_mso_epg_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_mso_epg_details_list.py b/intersight/model/niatelemetry_mso_epg_details_list.py index 4d6e2c62cc..f996da1adf 100644 --- a/intersight/model/niatelemetry_mso_epg_details_list.py +++ b/intersight/model/niatelemetry_mso_epg_details_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/niatelemetry_mso_epg_details_list_all_of.py b/intersight/model/niatelemetry_mso_epg_details_list_all_of.py index 9ba0d5e3f6..915847b524 100644 --- a/intersight/model/niatelemetry_mso_epg_details_list_all_of.py +++ b/intersight/model/niatelemetry_mso_epg_details_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/niatelemetry_mso_epg_details_response.py b/intersight/model/niatelemetry_mso_epg_details_response.py index b701adbafd..1108fc96fb 100644 --- a/intersight/model/niatelemetry_mso_epg_details_response.py +++ b/intersight/model/niatelemetry_mso_epg_details_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/niatelemetry_mso_schema_details.py b/intersight/model/niatelemetry_mso_schema_details.py index 1b3885514d..bc3a5ba4b5 100644 --- a/intersight/model/niatelemetry_mso_schema_details.py +++ b/intersight/model/niatelemetry_mso_schema_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 """ diff --git a/intersight/model/niatelemetry_mso_schema_details_all_of.py b/intersight/model/niatelemetry_mso_schema_details_all_of.py index 43c8437fc0..1d7b6b391b 100644 --- a/intersight/model/niatelemetry_mso_schema_details_all_of.py +++ b/intersight/model/niatelemetry_mso_schema_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_mso_schema_details_list.py b/intersight/model/niatelemetry_mso_schema_details_list.py index 3d47014ad2..577bcccd32 100644 --- a/intersight/model/niatelemetry_mso_schema_details_list.py +++ b/intersight/model/niatelemetry_mso_schema_details_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/niatelemetry_mso_schema_details_list_all_of.py b/intersight/model/niatelemetry_mso_schema_details_list_all_of.py index aab7729a7d..63eeb5c6b9 100644 --- a/intersight/model/niatelemetry_mso_schema_details_list_all_of.py +++ b/intersight/model/niatelemetry_mso_schema_details_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/niatelemetry_mso_schema_details_response.py b/intersight/model/niatelemetry_mso_schema_details_response.py index fd35dd0c48..0e7e181768 100644 --- a/intersight/model/niatelemetry_mso_schema_details_response.py +++ b/intersight/model/niatelemetry_mso_schema_details_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/niatelemetry_mso_site_details.py b/intersight/model/niatelemetry_mso_site_details.py index 9fbac99788..3bad2fec86 100644 --- a/intersight/model/niatelemetry_mso_site_details.py +++ b/intersight/model/niatelemetry_mso_site_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 """ diff --git a/intersight/model/niatelemetry_mso_site_details_all_of.py b/intersight/model/niatelemetry_mso_site_details_all_of.py index c8921c7641..5136477d4d 100644 --- a/intersight/model/niatelemetry_mso_site_details_all_of.py +++ b/intersight/model/niatelemetry_mso_site_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_mso_site_details_list.py b/intersight/model/niatelemetry_mso_site_details_list.py index 463f4f1ffb..dacfe95425 100644 --- a/intersight/model/niatelemetry_mso_site_details_list.py +++ b/intersight/model/niatelemetry_mso_site_details_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/niatelemetry_mso_site_details_list_all_of.py b/intersight/model/niatelemetry_mso_site_details_list_all_of.py index fd6d64ea83..615eeb1d73 100644 --- a/intersight/model/niatelemetry_mso_site_details_list_all_of.py +++ b/intersight/model/niatelemetry_mso_site_details_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/niatelemetry_mso_site_details_response.py b/intersight/model/niatelemetry_mso_site_details_response.py index bc4340ccf9..d355b1b910 100644 --- a/intersight/model/niatelemetry_mso_site_details_response.py +++ b/intersight/model/niatelemetry_mso_site_details_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/niatelemetry_mso_tenant_details.py b/intersight/model/niatelemetry_mso_tenant_details.py index 8b89ece74d..81e706c57b 100644 --- a/intersight/model/niatelemetry_mso_tenant_details.py +++ b/intersight/model/niatelemetry_mso_tenant_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 """ diff --git a/intersight/model/niatelemetry_mso_tenant_details_all_of.py b/intersight/model/niatelemetry_mso_tenant_details_all_of.py index 31f3fed2e9..5199774011 100644 --- a/intersight/model/niatelemetry_mso_tenant_details_all_of.py +++ b/intersight/model/niatelemetry_mso_tenant_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_mso_tenant_details_list.py b/intersight/model/niatelemetry_mso_tenant_details_list.py index a0442fce37..e8430d4f7e 100644 --- a/intersight/model/niatelemetry_mso_tenant_details_list.py +++ b/intersight/model/niatelemetry_mso_tenant_details_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/niatelemetry_mso_tenant_details_list_all_of.py b/intersight/model/niatelemetry_mso_tenant_details_list_all_of.py index abf2c0fd58..4134e10784 100644 --- a/intersight/model/niatelemetry_mso_tenant_details_list_all_of.py +++ b/intersight/model/niatelemetry_mso_tenant_details_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/niatelemetry_mso_tenant_details_response.py b/intersight/model/niatelemetry_mso_tenant_details_response.py index fa4265d3ae..4d26666895 100644 --- a/intersight/model/niatelemetry_mso_tenant_details_response.py +++ b/intersight/model/niatelemetry_mso_tenant_details_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/niatelemetry_nexus_dashboard_controller_details.py b/intersight/model/niatelemetry_nexus_dashboard_controller_details.py index 33b1131f2d..33402b59da 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_controller_details.py +++ b/intersight/model/niatelemetry_nexus_dashboard_controller_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 """ diff --git a/intersight/model/niatelemetry_nexus_dashboard_controller_details_all_of.py b/intersight/model/niatelemetry_nexus_dashboard_controller_details_all_of.py index 5e847b961f..bb0c971919 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_controller_details_all_of.py +++ b/intersight/model/niatelemetry_nexus_dashboard_controller_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nexus_dashboard_controller_details_list.py b/intersight/model/niatelemetry_nexus_dashboard_controller_details_list.py index d1f41d65be..6c2f4ecfa8 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_controller_details_list.py +++ b/intersight/model/niatelemetry_nexus_dashboard_controller_details_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/niatelemetry_nexus_dashboard_controller_details_list_all_of.py b/intersight/model/niatelemetry_nexus_dashboard_controller_details_list_all_of.py index 3a58ed15e8..e080a59a32 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_controller_details_list_all_of.py +++ b/intersight/model/niatelemetry_nexus_dashboard_controller_details_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/niatelemetry_nexus_dashboard_controller_details_response.py b/intersight/model/niatelemetry_nexus_dashboard_controller_details_response.py index e5275bc16e..7454d47c69 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_controller_details_response.py +++ b/intersight/model/niatelemetry_nexus_dashboard_controller_details_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/niatelemetry_nexus_dashboard_details.py b/intersight/model/niatelemetry_nexus_dashboard_details.py index f6edfcafc9..81ffcea250 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_details.py +++ b/intersight/model/niatelemetry_nexus_dashboard_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 """ diff --git a/intersight/model/niatelemetry_nexus_dashboard_details_all_of.py b/intersight/model/niatelemetry_nexus_dashboard_details_all_of.py index 4ae6b8e554..04ea08c48a 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_details_all_of.py +++ b/intersight/model/niatelemetry_nexus_dashboard_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nexus_dashboard_details_list.py b/intersight/model/niatelemetry_nexus_dashboard_details_list.py index c9198f8d80..19574bd22e 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_details_list.py +++ b/intersight/model/niatelemetry_nexus_dashboard_details_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/niatelemetry_nexus_dashboard_details_list_all_of.py b/intersight/model/niatelemetry_nexus_dashboard_details_list_all_of.py index b616ce5c66..eb85eb22eb 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_details_list_all_of.py +++ b/intersight/model/niatelemetry_nexus_dashboard_details_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/niatelemetry_nexus_dashboard_details_response.py b/intersight/model/niatelemetry_nexus_dashboard_details_response.py index 0d8a3f70f1..a4ad034fdf 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_details_response.py +++ b/intersight/model/niatelemetry_nexus_dashboard_details_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/niatelemetry_nexus_dashboard_memory_details.py b/intersight/model/niatelemetry_nexus_dashboard_memory_details.py index d13756b919..0b478d07b7 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_memory_details.py +++ b/intersight/model/niatelemetry_nexus_dashboard_memory_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 """ diff --git a/intersight/model/niatelemetry_nexus_dashboard_memory_details_all_of.py b/intersight/model/niatelemetry_nexus_dashboard_memory_details_all_of.py index 06cb124d0e..e425a349ef 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_memory_details_all_of.py +++ b/intersight/model/niatelemetry_nexus_dashboard_memory_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nexus_dashboard_memory_details_list.py b/intersight/model/niatelemetry_nexus_dashboard_memory_details_list.py index eda8292d15..b58bf531cc 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_memory_details_list.py +++ b/intersight/model/niatelemetry_nexus_dashboard_memory_details_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/niatelemetry_nexus_dashboard_memory_details_list_all_of.py b/intersight/model/niatelemetry_nexus_dashboard_memory_details_list_all_of.py index dfa5fbb75f..2209f6501f 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_memory_details_list_all_of.py +++ b/intersight/model/niatelemetry_nexus_dashboard_memory_details_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/niatelemetry_nexus_dashboard_memory_details_response.py b/intersight/model/niatelemetry_nexus_dashboard_memory_details_response.py index f471c35763..1cbc247914 100644 --- a/intersight/model/niatelemetry_nexus_dashboard_memory_details_response.py +++ b/intersight/model/niatelemetry_nexus_dashboard_memory_details_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/niatelemetry_nexus_dashboards.py b/intersight/model/niatelemetry_nexus_dashboards.py index 8811e12e06..c275c2e9d9 100644 --- a/intersight/model/niatelemetry_nexus_dashboards.py +++ b/intersight/model/niatelemetry_nexus_dashboards.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nexus_dashboards_all_of.py b/intersight/model/niatelemetry_nexus_dashboards_all_of.py index 518193be1d..085985dd02 100644 --- a/intersight/model/niatelemetry_nexus_dashboards_all_of.py +++ b/intersight/model/niatelemetry_nexus_dashboards_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nexus_dashboards_list.py b/intersight/model/niatelemetry_nexus_dashboards_list.py index 356a690654..7de7b85193 100644 --- a/intersight/model/niatelemetry_nexus_dashboards_list.py +++ b/intersight/model/niatelemetry_nexus_dashboards_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/niatelemetry_nexus_dashboards_list_all_of.py b/intersight/model/niatelemetry_nexus_dashboards_list_all_of.py index 7f88b4ab39..a978bfe088 100644 --- a/intersight/model/niatelemetry_nexus_dashboards_list_all_of.py +++ b/intersight/model/niatelemetry_nexus_dashboards_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/niatelemetry_nexus_dashboards_relationship.py b/intersight/model/niatelemetry_nexus_dashboards_relationship.py index d53e9baf14..271fa2b1d5 100644 --- a/intersight/model/niatelemetry_nexus_dashboards_relationship.py +++ b/intersight/model/niatelemetry_nexus_dashboards_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 NiatelemetryNexusDashboardsRelationship(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 NiatelemetryNexusDashboardsRelationship(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 NiatelemetryNexusDashboardsRelationship(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 NiatelemetryNexusDashboardsRelationship(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 NiatelemetryNexusDashboardsRelationship(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 NiatelemetryNexusDashboardsRelationship(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 NiatelemetryNexusDashboardsRelationship(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 NiatelemetryNexusDashboardsRelationship(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 NiatelemetryNexusDashboardsRelationship(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 NiatelemetryNexusDashboardsRelationship(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/niatelemetry_nexus_dashboards_response.py b/intersight/model/niatelemetry_nexus_dashboards_response.py index 43690ebfc7..d3c5401534 100644 --- a/intersight/model/niatelemetry_nexus_dashboards_response.py +++ b/intersight/model/niatelemetry_nexus_dashboards_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/niatelemetry_nia_feature_usage.py b/intersight/model/niatelemetry_nia_feature_usage.py index ba20ac60e4..85b99975d2 100644 --- a/intersight/model/niatelemetry_nia_feature_usage.py +++ b/intersight/model/niatelemetry_nia_feature_usage.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nia_feature_usage_all_of.py b/intersight/model/niatelemetry_nia_feature_usage_all_of.py index 0a15021ccb..e60958916b 100644 --- a/intersight/model/niatelemetry_nia_feature_usage_all_of.py +++ b/intersight/model/niatelemetry_nia_feature_usage_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nia_feature_usage_list.py b/intersight/model/niatelemetry_nia_feature_usage_list.py index efc034e7f5..3c751f30b6 100644 --- a/intersight/model/niatelemetry_nia_feature_usage_list.py +++ b/intersight/model/niatelemetry_nia_feature_usage_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/niatelemetry_nia_feature_usage_list_all_of.py b/intersight/model/niatelemetry_nia_feature_usage_list_all_of.py index f22bb48c2c..7d4966d70a 100644 --- a/intersight/model/niatelemetry_nia_feature_usage_list_all_of.py +++ b/intersight/model/niatelemetry_nia_feature_usage_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/niatelemetry_nia_feature_usage_response.py b/intersight/model/niatelemetry_nia_feature_usage_response.py index 3e5b5c8def..4446daa49e 100644 --- a/intersight/model/niatelemetry_nia_feature_usage_response.py +++ b/intersight/model/niatelemetry_nia_feature_usage_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/niatelemetry_nia_inventory.py b/intersight/model/niatelemetry_nia_inventory.py index 9cedafda40..74a3f07fbe 100644 --- a/intersight/model/niatelemetry_nia_inventory.py +++ b/intersight/model/niatelemetry_nia_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/niatelemetry_nia_inventory_all_of.py b/intersight/model/niatelemetry_nia_inventory_all_of.py index 8357aa2373..6d93567ffe 100644 --- a/intersight/model/niatelemetry_nia_inventory_all_of.py +++ b/intersight/model/niatelemetry_nia_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/niatelemetry_nia_inventory_dcnm.py b/intersight/model/niatelemetry_nia_inventory_dcnm.py index db8a61a168..390ebd313b 100644 --- a/intersight/model/niatelemetry_nia_inventory_dcnm.py +++ b/intersight/model/niatelemetry_nia_inventory_dcnm.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nia_inventory_dcnm_all_of.py b/intersight/model/niatelemetry_nia_inventory_dcnm_all_of.py index 38417bfa89..9d8aefa6aa 100644 --- a/intersight/model/niatelemetry_nia_inventory_dcnm_all_of.py +++ b/intersight/model/niatelemetry_nia_inventory_dcnm_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nia_inventory_dcnm_list.py b/intersight/model/niatelemetry_nia_inventory_dcnm_list.py index a5c2204f13..f305f9d6ed 100644 --- a/intersight/model/niatelemetry_nia_inventory_dcnm_list.py +++ b/intersight/model/niatelemetry_nia_inventory_dcnm_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/niatelemetry_nia_inventory_dcnm_list_all_of.py b/intersight/model/niatelemetry_nia_inventory_dcnm_list_all_of.py index 6471eef062..6577654ebd 100644 --- a/intersight/model/niatelemetry_nia_inventory_dcnm_list_all_of.py +++ b/intersight/model/niatelemetry_nia_inventory_dcnm_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/niatelemetry_nia_inventory_dcnm_response.py b/intersight/model/niatelemetry_nia_inventory_dcnm_response.py index 9989776048..959a7d654c 100644 --- a/intersight/model/niatelemetry_nia_inventory_dcnm_response.py +++ b/intersight/model/niatelemetry_nia_inventory_dcnm_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/niatelemetry_nia_inventory_fabric.py b/intersight/model/niatelemetry_nia_inventory_fabric.py index 41afdf90af..2705572895 100644 --- a/intersight/model/niatelemetry_nia_inventory_fabric.py +++ b/intersight/model/niatelemetry_nia_inventory_fabric.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nia_inventory_fabric_all_of.py b/intersight/model/niatelemetry_nia_inventory_fabric_all_of.py index 9abc7c8fd5..a02b79bd32 100644 --- a/intersight/model/niatelemetry_nia_inventory_fabric_all_of.py +++ b/intersight/model/niatelemetry_nia_inventory_fabric_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nia_inventory_fabric_list.py b/intersight/model/niatelemetry_nia_inventory_fabric_list.py index c1e8a1793b..2d542d697a 100644 --- a/intersight/model/niatelemetry_nia_inventory_fabric_list.py +++ b/intersight/model/niatelemetry_nia_inventory_fabric_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/niatelemetry_nia_inventory_fabric_list_all_of.py b/intersight/model/niatelemetry_nia_inventory_fabric_list_all_of.py index 3166ca3997..a69bd3ecf2 100644 --- a/intersight/model/niatelemetry_nia_inventory_fabric_list_all_of.py +++ b/intersight/model/niatelemetry_nia_inventory_fabric_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/niatelemetry_nia_inventory_fabric_response.py b/intersight/model/niatelemetry_nia_inventory_fabric_response.py index 6058bc7216..8285aeb3bd 100644 --- a/intersight/model/niatelemetry_nia_inventory_fabric_response.py +++ b/intersight/model/niatelemetry_nia_inventory_fabric_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/niatelemetry_nia_inventory_list.py b/intersight/model/niatelemetry_nia_inventory_list.py index 4bb34f6f26..a001325bfe 100644 --- a/intersight/model/niatelemetry_nia_inventory_list.py +++ b/intersight/model/niatelemetry_nia_inventory_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/niatelemetry_nia_inventory_list_all_of.py b/intersight/model/niatelemetry_nia_inventory_list_all_of.py index fa82b97b7a..c40a9fff38 100644 --- a/intersight/model/niatelemetry_nia_inventory_list_all_of.py +++ b/intersight/model/niatelemetry_nia_inventory_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/niatelemetry_nia_inventory_relationship.py b/intersight/model/niatelemetry_nia_inventory_relationship.py index 2e0eefc002..e2676f95c1 100644 --- a/intersight/model/niatelemetry_nia_inventory_relationship.py +++ b/intersight/model/niatelemetry_nia_inventory_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 NiatelemetryNiaInventoryRelationship(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 NiatelemetryNiaInventoryRelationship(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 NiatelemetryNiaInventoryRelationship(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 NiatelemetryNiaInventoryRelationship(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 NiatelemetryNiaInventoryRelationship(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 NiatelemetryNiaInventoryRelationship(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 NiatelemetryNiaInventoryRelationship(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 NiatelemetryNiaInventoryRelationship(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 NiatelemetryNiaInventoryRelationship(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 NiatelemetryNiaInventoryRelationship(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/niatelemetry_nia_inventory_response.py b/intersight/model/niatelemetry_nia_inventory_response.py index f12aff429e..d284029068 100644 --- a/intersight/model/niatelemetry_nia_inventory_response.py +++ b/intersight/model/niatelemetry_nia_inventory_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/niatelemetry_nia_license_state.py b/intersight/model/niatelemetry_nia_license_state.py index c9945a2853..cecec7cc03 100644 --- a/intersight/model/niatelemetry_nia_license_state.py +++ b/intersight/model/niatelemetry_nia_license_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/niatelemetry_nia_license_state_all_of.py b/intersight/model/niatelemetry_nia_license_state_all_of.py index bc20f038b6..1ff8539653 100644 --- a/intersight/model/niatelemetry_nia_license_state_all_of.py +++ b/intersight/model/niatelemetry_nia_license_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/niatelemetry_nia_license_state_list.py b/intersight/model/niatelemetry_nia_license_state_list.py index d6ef75d972..a866d462da 100644 --- a/intersight/model/niatelemetry_nia_license_state_list.py +++ b/intersight/model/niatelemetry_nia_license_state_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/niatelemetry_nia_license_state_list_all_of.py b/intersight/model/niatelemetry_nia_license_state_list_all_of.py index 51f03915b5..08d7f94705 100644 --- a/intersight/model/niatelemetry_nia_license_state_list_all_of.py +++ b/intersight/model/niatelemetry_nia_license_state_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/niatelemetry_nia_license_state_relationship.py b/intersight/model/niatelemetry_nia_license_state_relationship.py index b70fa78ac3..ba4ab92ee3 100644 --- a/intersight/model/niatelemetry_nia_license_state_relationship.py +++ b/intersight/model/niatelemetry_nia_license_state_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 NiatelemetryNiaLicenseStateRelationship(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 NiatelemetryNiaLicenseStateRelationship(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 NiatelemetryNiaLicenseStateRelationship(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 NiatelemetryNiaLicenseStateRelationship(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 NiatelemetryNiaLicenseStateRelationship(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 NiatelemetryNiaLicenseStateRelationship(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 NiatelemetryNiaLicenseStateRelationship(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 NiatelemetryNiaLicenseStateRelationship(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 NiatelemetryNiaLicenseStateRelationship(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 NiatelemetryNiaLicenseStateRelationship(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/niatelemetry_nia_license_state_response.py b/intersight/model/niatelemetry_nia_license_state_response.py index 0705fefa9d..a9c0d47bf1 100644 --- a/intersight/model/niatelemetry_nia_license_state_response.py +++ b/intersight/model/niatelemetry_nia_license_state_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/niatelemetry_nve_packet_counters.py b/intersight/model/niatelemetry_nve_packet_counters.py index 32d05e5b7e..423b31b004 100644 --- a/intersight/model/niatelemetry_nve_packet_counters.py +++ b/intersight/model/niatelemetry_nve_packet_counters.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nve_packet_counters_all_of.py b/intersight/model/niatelemetry_nve_packet_counters_all_of.py index 9c7471fca8..c27621006e 100644 --- a/intersight/model/niatelemetry_nve_packet_counters_all_of.py +++ b/intersight/model/niatelemetry_nve_packet_counters_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nve_vni.py b/intersight/model/niatelemetry_nve_vni.py index 4f2f05fa78..3d53350d78 100644 --- a/intersight/model/niatelemetry_nve_vni.py +++ b/intersight/model/niatelemetry_nve_vni.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nve_vni_all_of.py b/intersight/model/niatelemetry_nve_vni_all_of.py index 8691343790..7bfcbf3fe7 100644 --- a/intersight/model/niatelemetry_nve_vni_all_of.py +++ b/intersight/model/niatelemetry_nve_vni_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nxos_bgp_mvpn.py b/intersight/model/niatelemetry_nxos_bgp_mvpn.py index 5fab505472..c23b2c4bbf 100644 --- a/intersight/model/niatelemetry_nxos_bgp_mvpn.py +++ b/intersight/model/niatelemetry_nxos_bgp_mvpn.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nxos_bgp_mvpn_all_of.py b/intersight/model/niatelemetry_nxos_bgp_mvpn_all_of.py index cfc301e53a..44f48596c8 100644 --- a/intersight/model/niatelemetry_nxos_bgp_mvpn_all_of.py +++ b/intersight/model/niatelemetry_nxos_bgp_mvpn_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nxos_vtp.py b/intersight/model/niatelemetry_nxos_vtp.py index 8f2a7ba5f2..b63eda5fb3 100644 --- a/intersight/model/niatelemetry_nxos_vtp.py +++ b/intersight/model/niatelemetry_nxos_vtp.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_nxos_vtp_all_of.py b/intersight/model/niatelemetry_nxos_vtp_all_of.py index e76c4cf472..f64b3e38b4 100644 --- a/intersight/model/niatelemetry_nxos_vtp_all_of.py +++ b/intersight/model/niatelemetry_nxos_vtp_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_password_strength_check.py b/intersight/model/niatelemetry_password_strength_check.py index d242e0a0a3..f1f8ca1973 100644 --- a/intersight/model/niatelemetry_password_strength_check.py +++ b/intersight/model/niatelemetry_password_strength_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/niatelemetry_password_strength_check_all_of.py b/intersight/model/niatelemetry_password_strength_check_all_of.py index 31330e7357..997b8963f2 100644 --- a/intersight/model/niatelemetry_password_strength_check_all_of.py +++ b/intersight/model/niatelemetry_password_strength_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/niatelemetry_password_strength_check_list.py b/intersight/model/niatelemetry_password_strength_check_list.py index f4ff0f0269..99c59ddb45 100644 --- a/intersight/model/niatelemetry_password_strength_check_list.py +++ b/intersight/model/niatelemetry_password_strength_check_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/niatelemetry_password_strength_check_list_all_of.py b/intersight/model/niatelemetry_password_strength_check_list_all_of.py index fc24dd4281..5481afe808 100644 --- a/intersight/model/niatelemetry_password_strength_check_list_all_of.py +++ b/intersight/model/niatelemetry_password_strength_check_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/niatelemetry_password_strength_check_response.py b/intersight/model/niatelemetry_password_strength_check_response.py index a9b9058542..e18332f3e1 100644 --- a/intersight/model/niatelemetry_password_strength_check_response.py +++ b/intersight/model/niatelemetry_password_strength_check_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/niatelemetry_site_inventory.py b/intersight/model/niatelemetry_site_inventory.py index ef4dfb73e3..bd1879952b 100644 --- a/intersight/model/niatelemetry_site_inventory.py +++ b/intersight/model/niatelemetry_site_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/niatelemetry_site_inventory_all_of.py b/intersight/model/niatelemetry_site_inventory_all_of.py index 640d39e2d7..d0c3ae10ca 100644 --- a/intersight/model/niatelemetry_site_inventory_all_of.py +++ b/intersight/model/niatelemetry_site_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/niatelemetry_site_inventory_list.py b/intersight/model/niatelemetry_site_inventory_list.py index 1c2819b64d..b8fb42086d 100644 --- a/intersight/model/niatelemetry_site_inventory_list.py +++ b/intersight/model/niatelemetry_site_inventory_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/niatelemetry_site_inventory_list_all_of.py b/intersight/model/niatelemetry_site_inventory_list_all_of.py index 1401e32fb9..92c1276143 100644 --- a/intersight/model/niatelemetry_site_inventory_list_all_of.py +++ b/intersight/model/niatelemetry_site_inventory_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/niatelemetry_site_inventory_response.py b/intersight/model/niatelemetry_site_inventory_response.py index 15263a60ad..ff0b27697e 100644 --- a/intersight/model/niatelemetry_site_inventory_response.py +++ b/intersight/model/niatelemetry_site_inventory_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/niatelemetry_smart_license.py b/intersight/model/niatelemetry_smart_license.py index eeb51e7e06..28c8b45712 100644 --- a/intersight/model/niatelemetry_smart_license.py +++ b/intersight/model/niatelemetry_smart_license.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_smart_license_all_of.py b/intersight/model/niatelemetry_smart_license_all_of.py index e387dc03bf..2c708da1ea 100644 --- a/intersight/model/niatelemetry_smart_license_all_of.py +++ b/intersight/model/niatelemetry_smart_license_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_ssh_version_two.py b/intersight/model/niatelemetry_ssh_version_two.py index 6eae548e1e..14c65f8272 100644 --- a/intersight/model/niatelemetry_ssh_version_two.py +++ b/intersight/model/niatelemetry_ssh_version_two.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_ssh_version_two_all_of.py b/intersight/model/niatelemetry_ssh_version_two_all_of.py index b296261b05..4aea608e13 100644 --- a/intersight/model/niatelemetry_ssh_version_two_all_of.py +++ b/intersight/model/niatelemetry_ssh_version_two_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_ssh_version_two_list.py b/intersight/model/niatelemetry_ssh_version_two_list.py index 3044030093..ca649148d3 100644 --- a/intersight/model/niatelemetry_ssh_version_two_list.py +++ b/intersight/model/niatelemetry_ssh_version_two_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/niatelemetry_ssh_version_two_list_all_of.py b/intersight/model/niatelemetry_ssh_version_two_list_all_of.py index 3fd097f5c8..f46ae71018 100644 --- a/intersight/model/niatelemetry_ssh_version_two_list_all_of.py +++ b/intersight/model/niatelemetry_ssh_version_two_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/niatelemetry_ssh_version_two_response.py b/intersight/model/niatelemetry_ssh_version_two_response.py index 430e25638e..3b61ccb6d7 100644 --- a/intersight/model/niatelemetry_ssh_version_two_response.py +++ b/intersight/model/niatelemetry_ssh_version_two_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/niatelemetry_supervisor_module_details.py b/intersight/model/niatelemetry_supervisor_module_details.py index b09ebfc975..f25b464613 100644 --- a/intersight/model/niatelemetry_supervisor_module_details.py +++ b/intersight/model/niatelemetry_supervisor_module_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 """ diff --git a/intersight/model/niatelemetry_supervisor_module_details_all_of.py b/intersight/model/niatelemetry_supervisor_module_details_all_of.py index d07f119e8d..a77836aa5f 100644 --- a/intersight/model/niatelemetry_supervisor_module_details_all_of.py +++ b/intersight/model/niatelemetry_supervisor_module_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_supervisor_module_details_list.py b/intersight/model/niatelemetry_supervisor_module_details_list.py index 4da05e2e9a..57e01dc719 100644 --- a/intersight/model/niatelemetry_supervisor_module_details_list.py +++ b/intersight/model/niatelemetry_supervisor_module_details_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/niatelemetry_supervisor_module_details_list_all_of.py b/intersight/model/niatelemetry_supervisor_module_details_list_all_of.py index 9b7da539a2..d45242b8c4 100644 --- a/intersight/model/niatelemetry_supervisor_module_details_list_all_of.py +++ b/intersight/model/niatelemetry_supervisor_module_details_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/niatelemetry_supervisor_module_details_response.py b/intersight/model/niatelemetry_supervisor_module_details_response.py index e0054ac54b..ab8a754734 100644 --- a/intersight/model/niatelemetry_supervisor_module_details_response.py +++ b/intersight/model/niatelemetry_supervisor_module_details_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/niatelemetry_system_controller_details.py b/intersight/model/niatelemetry_system_controller_details.py index 7b10e8afa4..5c95575ed0 100644 --- a/intersight/model/niatelemetry_system_controller_details.py +++ b/intersight/model/niatelemetry_system_controller_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 """ diff --git a/intersight/model/niatelemetry_system_controller_details_all_of.py b/intersight/model/niatelemetry_system_controller_details_all_of.py index b4a2fa9ceb..5a7388f75c 100644 --- a/intersight/model/niatelemetry_system_controller_details_all_of.py +++ b/intersight/model/niatelemetry_system_controller_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_system_controller_details_list.py b/intersight/model/niatelemetry_system_controller_details_list.py index 1c32ccdf8e..30ee80b966 100644 --- a/intersight/model/niatelemetry_system_controller_details_list.py +++ b/intersight/model/niatelemetry_system_controller_details_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/niatelemetry_system_controller_details_list_all_of.py b/intersight/model/niatelemetry_system_controller_details_list_all_of.py index 321a92cda6..84d2e3c753 100644 --- a/intersight/model/niatelemetry_system_controller_details_list_all_of.py +++ b/intersight/model/niatelemetry_system_controller_details_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/niatelemetry_system_controller_details_response.py b/intersight/model/niatelemetry_system_controller_details_response.py index f18e0854fe..30621bd8e1 100644 --- a/intersight/model/niatelemetry_system_controller_details_response.py +++ b/intersight/model/niatelemetry_system_controller_details_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/niatelemetry_tenant.py b/intersight/model/niatelemetry_tenant.py index c24776dff4..2509dd99ae 100644 --- a/intersight/model/niatelemetry_tenant.py +++ b/intersight/model/niatelemetry_tenant.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_tenant_all_of.py b/intersight/model/niatelemetry_tenant_all_of.py index c5c402406a..b53d5b3909 100644 --- a/intersight/model/niatelemetry_tenant_all_of.py +++ b/intersight/model/niatelemetry_tenant_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/niatelemetry_tenant_list.py b/intersight/model/niatelemetry_tenant_list.py index 0e8013c886..d4b6f57653 100644 --- a/intersight/model/niatelemetry_tenant_list.py +++ b/intersight/model/niatelemetry_tenant_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/niatelemetry_tenant_list_all_of.py b/intersight/model/niatelemetry_tenant_list_all_of.py index 94bd2d37c2..c686a456ea 100644 --- a/intersight/model/niatelemetry_tenant_list_all_of.py +++ b/intersight/model/niatelemetry_tenant_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/niatelemetry_tenant_response.py b/intersight/model/niatelemetry_tenant_response.py index 0ed3aa6fc9..13a268ab97 100644 --- a/intersight/model/niatelemetry_tenant_response.py +++ b/intersight/model/niatelemetry_tenant_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/notification_abstract_condition.py b/intersight/model/notification_abstract_condition.py index 41a0adebd3..90ef0b052b 100644 --- a/intersight/model/notification_abstract_condition.py +++ b/intersight/model/notification_abstract_condition.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -126,6 +126,7 @@ class NotificationAbstractCondition(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", @@ -166,7 +167,6 @@ class NotificationAbstractCondition(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", @@ -302,6 +302,7 @@ class NotificationAbstractCondition(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", @@ -310,6 +311,8 @@ class NotificationAbstractCondition(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", @@ -321,6 +324,7 @@ class NotificationAbstractCondition(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", @@ -332,6 +336,7 @@ class NotificationAbstractCondition(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", @@ -389,6 +394,8 @@ class NotificationAbstractCondition(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", @@ -398,6 +405,7 @@ class NotificationAbstractCondition(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", @@ -633,6 +641,7 @@ class NotificationAbstractCondition(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", @@ -673,7 +682,6 @@ class NotificationAbstractCondition(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", @@ -809,6 +817,7 @@ class NotificationAbstractCondition(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", @@ -817,6 +826,8 @@ class NotificationAbstractCondition(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", @@ -828,6 +839,7 @@ class NotificationAbstractCondition(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", @@ -839,6 +851,7 @@ class NotificationAbstractCondition(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", @@ -896,6 +909,8 @@ class NotificationAbstractCondition(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", @@ -905,6 +920,7 @@ class NotificationAbstractCondition(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/notification_abstract_mo_condition.py b/intersight/model/notification_abstract_mo_condition.py index ec8f351a9d..38a16a7eee 100644 --- a/intersight/model/notification_abstract_mo_condition.py +++ b/intersight/model/notification_abstract_mo_condition.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -173,7 +173,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) enabled (bool): Condition can be switched on/off which out necessity to change the subscription settings: actions, conditions etc. Ex.: Subscription MO can be configured, but switched off.. [optional] # noqa: E501 mo_type (str): MoType for which the condition is created.. [optional] # noqa: E501 - odata_filter (str): Odata filter string managed internally. It's built with specific ObjectType properties.. [optional] # noqa: E501 + odata_filter (str): Odata filter string managed internally. It is built with specific ObjectType properties.. [optional] # noqa: E501 """ class_id = kwargs.get('class_id', "notification.AlarmMoCondition") diff --git a/intersight/model/notification_abstract_mo_condition_all_of.py b/intersight/model/notification_abstract_mo_condition_all_of.py index 27116e6243..4dc73c6cfe 100644 --- a/intersight/model/notification_abstract_mo_condition_all_of.py +++ b/intersight/model/notification_abstract_mo_condition_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -151,7 +151,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) enabled (bool): Condition can be switched on/off which out necessity to change the subscription settings: actions, conditions etc. Ex.: Subscription MO can be configured, but switched off.. [optional] # noqa: E501 mo_type (str): MoType for which the condition is created.. [optional] # noqa: E501 - odata_filter (str): Odata filter string managed internally. It's built with specific ObjectType properties.. [optional] # noqa: E501 + odata_filter (str): Odata filter string managed internally. It is built with specific ObjectType properties.. [optional] # noqa: E501 """ class_id = kwargs.get('class_id', "notification.AlarmMoCondition") diff --git a/intersight/model/notification_account_subscription.py b/intersight/model/notification_account_subscription.py index 8faf2416c4..557310787c 100644 --- a/intersight/model/notification_account_subscription.py +++ b/intersight/model/notification_account_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/notification_account_subscription_all_of.py b/intersight/model/notification_account_subscription_all_of.py index 736fe01283..b180dca29e 100644 --- a/intersight/model/notification_account_subscription_all_of.py +++ b/intersight/model/notification_account_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/notification_account_subscription_list.py b/intersight/model/notification_account_subscription_list.py index d223c412ff..82efa2f382 100644 --- a/intersight/model/notification_account_subscription_list.py +++ b/intersight/model/notification_account_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/notification_account_subscription_list_all_of.py b/intersight/model/notification_account_subscription_list_all_of.py index 81e7644768..66ab6fc84c 100644 --- a/intersight/model/notification_account_subscription_list_all_of.py +++ b/intersight/model/notification_account_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/notification_account_subscription_response.py b/intersight/model/notification_account_subscription_response.py index 0e576fb78a..219481d2bf 100644 --- a/intersight/model/notification_account_subscription_response.py +++ b/intersight/model/notification_account_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/notification_action.py b/intersight/model/notification_action.py index 9c2d6f767f..9b2a55218f 100644 --- a/intersight/model/notification_action.py +++ b/intersight/model/notification_action.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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 NotificationAction(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/notification_alarm_mo_condition.py b/intersight/model/notification_alarm_mo_condition.py index 94b3b8a11f..86786de804 100644 --- a/intersight/model/notification_alarm_mo_condition.py +++ b/intersight/model/notification_alarm_mo_condition.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -180,7 +180,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 severity ([str], none_type): [optional] # noqa: E501 enabled (bool): Condition can be switched on/off which out necessity to change the subscription settings: actions, conditions etc. Ex.: Subscription MO can be configured, but switched off.. [optional] # noqa: E501 mo_type (str): MoType for which the condition is created.. [optional] # noqa: E501 - odata_filter (str): Odata filter string managed internally. It's built with specific ObjectType properties.. [optional] # noqa: E501 + odata_filter (str): Odata filter string managed internally. It is built with specific ObjectType properties.. [optional] # noqa: E501 """ class_id = kwargs.get('class_id', "notification.AlarmMoCondition") diff --git a/intersight/model/notification_alarm_mo_condition_all_of.py b/intersight/model/notification_alarm_mo_condition_all_of.py index 57833972ba..ef9f04811d 100644 --- a/intersight/model/notification_alarm_mo_condition_all_of.py +++ b/intersight/model/notification_alarm_mo_condition_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/notification_send_email.py b/intersight/model/notification_send_email.py index b4c4de2b16..20f49f9146 100644 --- a/intersight/model/notification_send_email.py +++ b/intersight/model/notification_send_email.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/notification_send_email_all_of.py b/intersight/model/notification_send_email_all_of.py index 36a516665b..ae92484c5a 100644 --- a/intersight/model/notification_send_email_all_of.py +++ b/intersight/model/notification_send_email_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/notification_subscription.py b/intersight/model/notification_subscription.py index f978c001d6..de5c051b3b 100644 --- a/intersight/model/notification_subscription.py +++ b/intersight/model/notification_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/notification_subscription_all_of.py b/intersight/model/notification_subscription_all_of.py index 46cee98523..3b347bf9a4 100644 --- a/intersight/model/notification_subscription_all_of.py +++ b/intersight/model/notification_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/ntp_auth_ntp_server.py b/intersight/model/ntp_auth_ntp_server.py index 983d7c6124..58ffa5a872 100644 --- a/intersight/model/ntp_auth_ntp_server.py +++ b/intersight/model/ntp_auth_ntp_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/ntp_auth_ntp_server_all_of.py b/intersight/model/ntp_auth_ntp_server_all_of.py index 0869269ad0..6efc4ce228 100644 --- a/intersight/model/ntp_auth_ntp_server_all_of.py +++ b/intersight/model/ntp_auth_ntp_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/ntp_policy.py b/intersight/model/ntp_policy.py index f7cb6a0ef1..7109c99ea7 100644 --- a/intersight/model/ntp_policy.py +++ b/intersight/model/ntp_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/ntp_policy_all_of.py b/intersight/model/ntp_policy_all_of.py index f4456f2fc6..a23aefb0c0 100644 --- a/intersight/model/ntp_policy_all_of.py +++ b/intersight/model/ntp_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/ntp_policy_list.py b/intersight/model/ntp_policy_list.py index a5f91aca67..5a35c3dcfe 100644 --- a/intersight/model/ntp_policy_list.py +++ b/intersight/model/ntp_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/ntp_policy_list_all_of.py b/intersight/model/ntp_policy_list_all_of.py index a809dd5ae2..adae8dc86c 100644 --- a/intersight/model/ntp_policy_list_all_of.py +++ b/intersight/model/ntp_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/ntp_policy_response.py b/intersight/model/ntp_policy_response.py index ad574e7937..d298aa25d1 100644 --- a/intersight/model/ntp_policy_response.py +++ b/intersight/model/ntp_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/onprem_image_package.py b/intersight/model/onprem_image_package.py index acb1ec3b03..0fafd02a18 100644 --- a/intersight/model/onprem_image_package.py +++ b/intersight/model/onprem_image_package.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/onprem_image_package_all_of.py b/intersight/model/onprem_image_package_all_of.py index 3a10ad9b5a..f4954cf46a 100644 --- a/intersight/model/onprem_image_package_all_of.py +++ b/intersight/model/onprem_image_package_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/onprem_schedule.py b/intersight/model/onprem_schedule.py index cff64afd83..50282181cc 100644 --- a/intersight/model/onprem_schedule.py +++ b/intersight/model/onprem_schedule.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/onprem_schedule_all_of.py b/intersight/model/onprem_schedule_all_of.py index 19e760aae6..24239b32eb 100644 --- a/intersight/model/onprem_schedule_all_of.py +++ b/intersight/model/onprem_schedule_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/onprem_upgrade_note.py b/intersight/model/onprem_upgrade_note.py index ab32a107ed..fd1c479276 100644 --- a/intersight/model/onprem_upgrade_note.py +++ b/intersight/model/onprem_upgrade_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/onprem_upgrade_note_all_of.py b/intersight/model/onprem_upgrade_note_all_of.py index b467ddaadd..2b0817f65d 100644 --- a/intersight/model/onprem_upgrade_note_all_of.py +++ b/intersight/model/onprem_upgrade_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/onprem_upgrade_phase.py b/intersight/model/onprem_upgrade_phase.py index 1c8843032e..b164b4636e 100644 --- a/intersight/model/onprem_upgrade_phase.py +++ b/intersight/model/onprem_upgrade_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/onprem_upgrade_phase_all_of.py b/intersight/model/onprem_upgrade_phase_all_of.py index eea33cc2bd..8f60135443 100644 --- a/intersight/model/onprem_upgrade_phase_all_of.py +++ b/intersight/model/onprem_upgrade_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/oprs_deployment.py b/intersight/model/oprs_deployment.py index 32eecfd3e4..36a5d4f61a 100644 --- a/intersight/model/oprs_deployment.py +++ b/intersight/model/oprs_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/oprs_deployment_all_of.py b/intersight/model/oprs_deployment_all_of.py index aa18696c16..8062a94e9b 100644 --- a/intersight/model/oprs_deployment_all_of.py +++ b/intersight/model/oprs_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/oprs_deployment_list.py b/intersight/model/oprs_deployment_list.py index c3d103216d..7f284019c3 100644 --- a/intersight/model/oprs_deployment_list.py +++ b/intersight/model/oprs_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/oprs_deployment_list_all_of.py b/intersight/model/oprs_deployment_list_all_of.py index 8dbff01d71..d18b4a630f 100644 --- a/intersight/model/oprs_deployment_list_all_of.py +++ b/intersight/model/oprs_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/oprs_deployment_response.py b/intersight/model/oprs_deployment_response.py index 76429623cd..a43d5470d4 100644 --- a/intersight/model/oprs_deployment_response.py +++ b/intersight/model/oprs_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/oprs_kvpair.py b/intersight/model/oprs_kvpair.py index 8f30f83afd..f1dbcd1007 100644 --- a/intersight/model/oprs_kvpair.py +++ b/intersight/model/oprs_kvpair.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/oprs_kvpair_all_of.py b/intersight/model/oprs_kvpair_all_of.py index 2a7b5e084b..ac8bf797ce 100644 --- a/intersight/model/oprs_kvpair_all_of.py +++ b/intersight/model/oprs_kvpair_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/oprs_sync_target_list_message.py b/intersight/model/oprs_sync_target_list_message.py index 54deed24e3..a7cdd5030b 100644 --- a/intersight/model/oprs_sync_target_list_message.py +++ b/intersight/model/oprs_sync_target_list_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/oprs_sync_target_list_message_all_of.py b/intersight/model/oprs_sync_target_list_message_all_of.py index 9c436f7947..3f4e3e19ac 100644 --- a/intersight/model/oprs_sync_target_list_message_all_of.py +++ b/intersight/model/oprs_sync_target_list_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/oprs_sync_target_list_message_list.py b/intersight/model/oprs_sync_target_list_message_list.py index e78af578c9..303f8a8af1 100644 --- a/intersight/model/oprs_sync_target_list_message_list.py +++ b/intersight/model/oprs_sync_target_list_message_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/oprs_sync_target_list_message_list_all_of.py b/intersight/model/oprs_sync_target_list_message_list_all_of.py index 0c7dc71eea..790069358e 100644 --- a/intersight/model/oprs_sync_target_list_message_list_all_of.py +++ b/intersight/model/oprs_sync_target_list_message_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/oprs_sync_target_list_message_response.py b/intersight/model/oprs_sync_target_list_message_response.py index 9edbbfc9ed..0c8c43d386 100644 --- a/intersight/model/oprs_sync_target_list_message_response.py +++ b/intersight/model/oprs_sync_target_list_message_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/organization_organization.py b/intersight/model/organization_organization.py index 45fe98628a..21629c7a20 100644 --- a/intersight/model/organization_organization.py +++ b/intersight/model/organization_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/organization_organization_all_of.py b/intersight/model/organization_organization_all_of.py index 60730384a9..99d210894b 100644 --- a/intersight/model/organization_organization_all_of.py +++ b/intersight/model/organization_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/organization_organization_list.py b/intersight/model/organization_organization_list.py index 8da05c5f6f..87403b56a5 100644 --- a/intersight/model/organization_organization_list.py +++ b/intersight/model/organization_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/organization_organization_list_all_of.py b/intersight/model/organization_organization_list_all_of.py index 6a401db0c4..e376702d95 100644 --- a/intersight/model/organization_organization_list_all_of.py +++ b/intersight/model/organization_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/organization_organization_relationship.py b/intersight/model/organization_organization_relationship.py index 3925da6dee..b516ada215 100644 --- a/intersight/model/organization_organization_relationship.py +++ b/intersight/model/organization_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 """ @@ -76,6 +76,8 @@ class OrganizationOrganizationRelationship(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 OrganizationOrganizationRelationship(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 OrganizationOrganizationRelationship(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 OrganizationOrganizationRelationship(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 OrganizationOrganizationRelationship(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 OrganizationOrganizationRelationship(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 OrganizationOrganizationRelationship(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 OrganizationOrganizationRelationship(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 OrganizationOrganizationRelationship(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 OrganizationOrganizationRelationship(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/organization_organization_response.py b/intersight/model/organization_organization_response.py index 555d032abd..e2e956d476 100644 --- a/intersight/model/organization_organization_response.py +++ b/intersight/model/organization_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/os_answers.py b/intersight/model/os_answers.py index 3a2cd4e169..1427f91f16 100644 --- a/intersight/model/os_answers.py +++ b/intersight/model/os_answers.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_answers_all_of.py b/intersight/model/os_answers_all_of.py index da7f74b1f3..ff064fa72d 100644 --- a/intersight/model/os_answers_all_of.py +++ b/intersight/model/os_answers_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_base_install_config.py b/intersight/model/os_base_install_config.py index 3d2bb4579b..3727cae155 100644 --- a/intersight/model/os_base_install_config.py +++ b/intersight/model/os_base_install_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/os_base_install_config_all_of.py b/intersight/model/os_base_install_config_all_of.py index 0a80fb2912..ea8971743c 100644 --- a/intersight/model/os_base_install_config_all_of.py +++ b/intersight/model/os_base_install_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/os_bulk_install_info.py b/intersight/model/os_bulk_install_info.py index 40a7dfd694..5e655d74c9 100644 --- a/intersight/model/os_bulk_install_info.py +++ b/intersight/model/os_bulk_install_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/os_bulk_install_info_all_of.py b/intersight/model/os_bulk_install_info_all_of.py index df742f2227..3d70b50df3 100644 --- a/intersight/model/os_bulk_install_info_all_of.py +++ b/intersight/model/os_bulk_install_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/os_bulk_install_info_list.py b/intersight/model/os_bulk_install_info_list.py index b4643ab356..eafa1f3801 100644 --- a/intersight/model/os_bulk_install_info_list.py +++ b/intersight/model/os_bulk_install_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/os_bulk_install_info_list_all_of.py b/intersight/model/os_bulk_install_info_list_all_of.py index 93a71ab404..db23de9681 100644 --- a/intersight/model/os_bulk_install_info_list_all_of.py +++ b/intersight/model/os_bulk_install_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/os_bulk_install_info_response.py b/intersight/model/os_bulk_install_info_response.py index a4d1bb28a5..cd5a90e923 100644 --- a/intersight/model/os_bulk_install_info_response.py +++ b/intersight/model/os_bulk_install_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/os_catalog.py b/intersight/model/os_catalog.py index 0b4a7ad273..7b773c3f51 100644 --- a/intersight/model/os_catalog.py +++ b/intersight/model/os_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/os_catalog_all_of.py b/intersight/model/os_catalog_all_of.py index c11b630f6c..e4eb1cce6e 100644 --- a/intersight/model/os_catalog_all_of.py +++ b/intersight/model/os_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/os_catalog_list.py b/intersight/model/os_catalog_list.py index 4847963c76..e39ceb1729 100644 --- a/intersight/model/os_catalog_list.py +++ b/intersight/model/os_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/os_catalog_list_all_of.py b/intersight/model/os_catalog_list_all_of.py index 1544a0a795..6ddc90a734 100644 --- a/intersight/model/os_catalog_list_all_of.py +++ b/intersight/model/os_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/os_catalog_relationship.py b/intersight/model/os_catalog_relationship.py index 351c13b983..626feb02dc 100644 --- a/intersight/model/os_catalog_relationship.py +++ b/intersight/model/os_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 """ @@ -78,6 +78,8 @@ class OsCatalogRelationship(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 OsCatalogRelationship(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 OsCatalogRelationship(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 OsCatalogRelationship(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 OsCatalogRelationship(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 OsCatalogRelationship(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 OsCatalogRelationship(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 OsCatalogRelationship(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 OsCatalogRelationship(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 OsCatalogRelationship(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/os_catalog_response.py b/intersight/model/os_catalog_response.py index 6df9eee4cf..d6259c3839 100644 --- a/intersight/model/os_catalog_response.py +++ b/intersight/model/os_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/os_configuration_file.py b/intersight/model/os_configuration_file.py index 21db013baf..c8710eec09 100644 --- a/intersight/model/os_configuration_file.py +++ b/intersight/model/os_configuration_file.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_configuration_file_all_of.py b/intersight/model/os_configuration_file_all_of.py index c23b745694..59f7eba7ed 100644 --- a/intersight/model/os_configuration_file_all_of.py +++ b/intersight/model/os_configuration_file_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_configuration_file_list.py b/intersight/model/os_configuration_file_list.py index e39981256c..2975980685 100644 --- a/intersight/model/os_configuration_file_list.py +++ b/intersight/model/os_configuration_file_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/os_configuration_file_list_all_of.py b/intersight/model/os_configuration_file_list_all_of.py index 40cc78cded..44d7104b09 100644 --- a/intersight/model/os_configuration_file_list_all_of.py +++ b/intersight/model/os_configuration_file_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/os_configuration_file_relationship.py b/intersight/model/os_configuration_file_relationship.py index c42e730546..b114a7f9db 100644 --- a/intersight/model/os_configuration_file_relationship.py +++ b/intersight/model/os_configuration_file_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 OsConfigurationFileRelationship(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 OsConfigurationFileRelationship(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 OsConfigurationFileRelationship(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 OsConfigurationFileRelationship(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 OsConfigurationFileRelationship(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 OsConfigurationFileRelationship(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 OsConfigurationFileRelationship(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 OsConfigurationFileRelationship(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 OsConfigurationFileRelationship(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 OsConfigurationFileRelationship(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/os_configuration_file_response.py b/intersight/model/os_configuration_file_response.py index 87332b79a3..5498c199af 100644 --- a/intersight/model/os_configuration_file_response.py +++ b/intersight/model/os_configuration_file_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/os_distribution.py b/intersight/model/os_distribution.py index c53064df5e..158a458f97 100644 --- a/intersight/model/os_distribution.py +++ b/intersight/model/os_distribution.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_distribution_all_of.py b/intersight/model/os_distribution_all_of.py index 430dd4bfcf..66bc40f737 100644 --- a/intersight/model/os_distribution_all_of.py +++ b/intersight/model/os_distribution_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_distribution_list.py b/intersight/model/os_distribution_list.py index 7b5af20731..48ff2a18ff 100644 --- a/intersight/model/os_distribution_list.py +++ b/intersight/model/os_distribution_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/os_distribution_list_all_of.py b/intersight/model/os_distribution_list_all_of.py index 4e3f7d832a..08f783b4bd 100644 --- a/intersight/model/os_distribution_list_all_of.py +++ b/intersight/model/os_distribution_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/os_distribution_relationship.py b/intersight/model/os_distribution_relationship.py index 91e12d3d59..2847c0f6a5 100644 --- a/intersight/model/os_distribution_relationship.py +++ b/intersight/model/os_distribution_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 OsDistributionRelationship(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 OsDistributionRelationship(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 OsDistributionRelationship(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 OsDistributionRelationship(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 OsDistributionRelationship(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 OsDistributionRelationship(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 OsDistributionRelationship(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 OsDistributionRelationship(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 OsDistributionRelationship(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 OsDistributionRelationship(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/os_distribution_response.py b/intersight/model/os_distribution_response.py index 4294457bd6..0ec0a2552e 100644 --- a/intersight/model/os_distribution_response.py +++ b/intersight/model/os_distribution_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/os_global_config.py b/intersight/model/os_global_config.py index 5c16cb78cd..f4232535c5 100644 --- a/intersight/model/os_global_config.py +++ b/intersight/model/os_global_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/os_global_config_all_of.py b/intersight/model/os_global_config_all_of.py index 0b3944d50b..7a53b88b86 100644 --- a/intersight/model/os_global_config_all_of.py +++ b/intersight/model/os_global_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/os_install.py b/intersight/model/os_install.py index 559fa285cd..492d4b3b69 100644 --- a/intersight/model/os_install.py +++ b/intersight/model/os_install.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_install_all_of.py b/intersight/model/os_install_all_of.py index f96a5be200..3f8a671911 100644 --- a/intersight/model/os_install_all_of.py +++ b/intersight/model/os_install_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_install_list.py b/intersight/model/os_install_list.py index 4d6ee2aeac..18c5a1c3e5 100644 --- a/intersight/model/os_install_list.py +++ b/intersight/model/os_install_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/os_install_list_all_of.py b/intersight/model/os_install_list_all_of.py index 98ae7f854f..de252ac399 100644 --- a/intersight/model/os_install_list_all_of.py +++ b/intersight/model/os_install_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/os_install_response.py b/intersight/model/os_install_response.py index c087316583..910a089166 100644 --- a/intersight/model/os_install_response.py +++ b/intersight/model/os_install_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/os_install_target.py b/intersight/model/os_install_target.py index 2f4fdcb9ce..e592ae8cda 100644 --- a/intersight/model/os_install_target.py +++ b/intersight/model/os_install_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 """ @@ -126,6 +126,7 @@ class OsInstallTarget(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", @@ -166,7 +167,6 @@ class OsInstallTarget(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", @@ -302,6 +302,7 @@ class OsInstallTarget(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", @@ -310,6 +311,8 @@ class OsInstallTarget(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", @@ -321,6 +324,7 @@ class OsInstallTarget(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", @@ -332,6 +336,7 @@ class OsInstallTarget(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", @@ -389,6 +394,8 @@ class OsInstallTarget(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", @@ -398,6 +405,7 @@ class OsInstallTarget(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", @@ -633,6 +641,7 @@ class OsInstallTarget(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", @@ -673,7 +682,6 @@ class OsInstallTarget(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", @@ -809,6 +817,7 @@ class OsInstallTarget(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", @@ -817,6 +826,8 @@ class OsInstallTarget(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", @@ -828,6 +839,7 @@ class OsInstallTarget(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", @@ -839,6 +851,7 @@ class OsInstallTarget(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", @@ -896,6 +909,8 @@ class OsInstallTarget(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", @@ -905,6 +920,7 @@ class OsInstallTarget(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/os_install_target_response.py b/intersight/model/os_install_target_response.py index 8625cc5102..fbc1f47e3e 100644 --- a/intersight/model/os_install_target_response.py +++ b/intersight/model/os_install_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/os_install_target_response_all_of.py b/intersight/model/os_install_target_response_all_of.py index ea76f38681..1448ea875c 100644 --- a/intersight/model/os_install_target_response_all_of.py +++ b/intersight/model/os_install_target_response_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_ip_configuration.py b/intersight/model/os_ip_configuration.py index fa3dec96be..a4d1609876 100644 --- a/intersight/model/os_ip_configuration.py +++ b/intersight/model/os_ip_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 """ @@ -126,6 +126,7 @@ class OsIpConfiguration(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", @@ -166,7 +167,6 @@ class OsIpConfiguration(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", @@ -302,6 +302,7 @@ class OsIpConfiguration(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", @@ -310,6 +311,8 @@ class OsIpConfiguration(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", @@ -321,6 +324,7 @@ class OsIpConfiguration(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", @@ -332,6 +336,7 @@ class OsIpConfiguration(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", @@ -389,6 +394,8 @@ class OsIpConfiguration(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", @@ -398,6 +405,7 @@ class OsIpConfiguration(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", @@ -633,6 +641,7 @@ class OsIpConfiguration(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", @@ -673,7 +682,6 @@ class OsIpConfiguration(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", @@ -809,6 +817,7 @@ class OsIpConfiguration(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", @@ -817,6 +826,8 @@ class OsIpConfiguration(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", @@ -828,6 +839,7 @@ class OsIpConfiguration(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", @@ -839,6 +851,7 @@ class OsIpConfiguration(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", @@ -896,6 +909,8 @@ class OsIpConfiguration(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", @@ -905,6 +920,7 @@ class OsIpConfiguration(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/os_ipv4_configuration.py b/intersight/model/os_ipv4_configuration.py index 6bbe91d042..1d35462bac 100644 --- a/intersight/model/os_ipv4_configuration.py +++ b/intersight/model/os_ipv4_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/os_ipv4_configuration_all_of.py b/intersight/model/os_ipv4_configuration_all_of.py index f5b468a905..c981065783 100644 --- a/intersight/model/os_ipv4_configuration_all_of.py +++ b/intersight/model/os_ipv4_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/os_ipv6_configuration.py b/intersight/model/os_ipv6_configuration.py index 69c5e0832a..2c9aecee6e 100644 --- a/intersight/model/os_ipv6_configuration.py +++ b/intersight/model/os_ipv6_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/os_ipv6_configuration_all_of.py b/intersight/model/os_ipv6_configuration_all_of.py index 08ce1680b6..292f1d8186 100644 --- a/intersight/model/os_ipv6_configuration_all_of.py +++ b/intersight/model/os_ipv6_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/os_operating_system_parameters.py b/intersight/model/os_operating_system_parameters.py index 118683c024..b7b1231d15 100644 --- a/intersight/model/os_operating_system_parameters.py +++ b/intersight/model/os_operating_system_parameters.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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 OsOperatingSystemParameters(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/os_os_support.py b/intersight/model/os_os_support.py index 274c18e994..57cef7964e 100644 --- a/intersight/model/os_os_support.py +++ b/intersight/model/os_os_support.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_os_support_all_of.py b/intersight/model/os_os_support_all_of.py index 41ca8c3a08..d93e7e185c 100644 --- a/intersight/model/os_os_support_all_of.py +++ b/intersight/model/os_os_support_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_physical_disk.py b/intersight/model/os_physical_disk.py index 9168a867af..63d10a6e72 100644 --- a/intersight/model/os_physical_disk.py +++ b/intersight/model/os_physical_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/os_physical_disk_all_of.py b/intersight/model/os_physical_disk_all_of.py index 7c0a1795de..7c4e1b3205 100644 --- a/intersight/model/os_physical_disk_all_of.py +++ b/intersight/model/os_physical_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/os_physical_disk_response.py b/intersight/model/os_physical_disk_response.py index 57baf895f2..21c4eaa347 100644 --- a/intersight/model/os_physical_disk_response.py +++ b/intersight/model/os_physical_disk_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/os_physical_disk_response_all_of.py b/intersight/model/os_physical_disk_response_all_of.py index cdaac610bd..c5cf5b8835 100644 --- a/intersight/model/os_physical_disk_response_all_of.py +++ b/intersight/model/os_physical_disk_response_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_place_holder.py b/intersight/model/os_place_holder.py index ce0db6c9eb..1228840887 100644 --- a/intersight/model/os_place_holder.py +++ b/intersight/model/os_place_holder.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_place_holder_all_of.py b/intersight/model/os_place_holder_all_of.py index 4e495e3016..7fb8ea5a34 100644 --- a/intersight/model/os_place_holder_all_of.py +++ b/intersight/model/os_place_holder_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_server_config.py b/intersight/model/os_server_config.py index 73c6b04c57..e9ea594cf7 100644 --- a/intersight/model/os_server_config.py +++ b/intersight/model/os_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 """ diff --git a/intersight/model/os_server_config_all_of.py b/intersight/model/os_server_config_all_of.py index b880883c4a..86c2f7ce3b 100644 --- a/intersight/model/os_server_config_all_of.py +++ b/intersight/model/os_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 """ diff --git a/intersight/model/os_supported_version.py b/intersight/model/os_supported_version.py index 3ae189710f..63efdc03c0 100644 --- a/intersight/model/os_supported_version.py +++ b/intersight/model/os_supported_version.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_supported_version_all_of.py b/intersight/model/os_supported_version_all_of.py index 0f2399b51b..fa6a8deb3f 100644 --- a/intersight/model/os_supported_version_all_of.py +++ b/intersight/model/os_supported_version_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_supported_version_list.py b/intersight/model/os_supported_version_list.py index 4267d96053..4390e08e0e 100644 --- a/intersight/model/os_supported_version_list.py +++ b/intersight/model/os_supported_version_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/os_supported_version_list_all_of.py b/intersight/model/os_supported_version_list_all_of.py index e0bcff40d3..dfc02ab8c3 100644 --- a/intersight/model/os_supported_version_list_all_of.py +++ b/intersight/model/os_supported_version_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/os_supported_version_response.py b/intersight/model/os_supported_version_response.py index d2ce2f7c4d..e3f926f062 100644 --- a/intersight/model/os_supported_version_response.py +++ b/intersight/model/os_supported_version_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/os_template_file.py b/intersight/model/os_template_file.py index ac26ced95f..e3873c9714 100644 --- a/intersight/model/os_template_file.py +++ b/intersight/model/os_template_file.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_template_file_all_of.py b/intersight/model/os_template_file_all_of.py index 127e94e6fa..73c8f931a9 100644 --- a/intersight/model/os_template_file_all_of.py +++ b/intersight/model/os_template_file_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_valid_install_target.py b/intersight/model/os_valid_install_target.py index d21ac20669..97a19c7378 100644 --- a/intersight/model/os_valid_install_target.py +++ b/intersight/model/os_valid_install_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/os_valid_install_target_all_of.py b/intersight/model/os_valid_install_target_all_of.py index 56ebf01137..cbdf12f531 100644 --- a/intersight/model/os_valid_install_target_all_of.py +++ b/intersight/model/os_valid_install_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/os_validation_information.py b/intersight/model/os_validation_information.py index e64b654b21..93a69f7560 100644 --- a/intersight/model/os_validation_information.py +++ b/intersight/model/os_validation_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/os_validation_information_all_of.py b/intersight/model/os_validation_information_all_of.py index 9a31e01fe5..a5092f538e 100644 --- a/intersight/model/os_validation_information_all_of.py +++ b/intersight/model/os_validation_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/os_virtual_drive.py b/intersight/model/os_virtual_drive.py index 764b51c6a1..23e4b76244 100644 --- a/intersight/model/os_virtual_drive.py +++ b/intersight/model/os_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/os_virtual_drive_all_of.py b/intersight/model/os_virtual_drive_all_of.py index 694511b105..6decf9fcef 100644 --- a/intersight/model/os_virtual_drive_all_of.py +++ b/intersight/model/os_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/os_virtual_drive_response.py b/intersight/model/os_virtual_drive_response.py index 2a2c4325ee..e1c5698060 100644 --- a/intersight/model/os_virtual_drive_response.py +++ b/intersight/model/os_virtual_drive_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/os_virtual_drive_response_all_of.py b/intersight/model/os_virtual_drive_response_all_of.py index effe254c94..f4a26c0f3f 100644 --- a/intersight/model/os_virtual_drive_response_all_of.py +++ b/intersight/model/os_virtual_drive_response_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_windows_parameters.py b/intersight/model/os_windows_parameters.py index 786cf32f68..eb75532e8c 100644 --- a/intersight/model/os_windows_parameters.py +++ b/intersight/model/os_windows_parameters.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/os_windows_parameters_all_of.py b/intersight/model/os_windows_parameters_all_of.py index af655f3c4f..47ee18a23a 100644 --- a/intersight/model/os_windows_parameters_all_of.py +++ b/intersight/model/os_windows_parameters_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/patch_document.py b/intersight/model/patch_document.py index 423bda8237..5f5ec53143 100644 --- a/intersight/model/patch_document.py +++ b/intersight/model/patch_document.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pci_coprocessor_card.py b/intersight/model/pci_coprocessor_card.py index 796abe7c1f..8c3df252c8 100644 --- a/intersight/model/pci_coprocessor_card.py +++ b/intersight/model/pci_coprocessor_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/pci_coprocessor_card_all_of.py b/intersight/model/pci_coprocessor_card_all_of.py index 6433b6f382..6183c9137b 100644 --- a/intersight/model/pci_coprocessor_card_all_of.py +++ b/intersight/model/pci_coprocessor_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/pci_coprocessor_card_list.py b/intersight/model/pci_coprocessor_card_list.py index b074aba7c8..000c3586d9 100644 --- a/intersight/model/pci_coprocessor_card_list.py +++ b/intersight/model/pci_coprocessor_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/pci_coprocessor_card_list_all_of.py b/intersight/model/pci_coprocessor_card_list_all_of.py index 10371ce34c..c09522ec0e 100644 --- a/intersight/model/pci_coprocessor_card_list_all_of.py +++ b/intersight/model/pci_coprocessor_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/pci_coprocessor_card_relationship.py b/intersight/model/pci_coprocessor_card_relationship.py index 5e89f336a9..c22da5af7d 100644 --- a/intersight/model/pci_coprocessor_card_relationship.py +++ b/intersight/model/pci_coprocessor_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 """ @@ -80,6 +80,8 @@ class PciCoprocessorCardRelationship(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 PciCoprocessorCardRelationship(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 PciCoprocessorCardRelationship(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 PciCoprocessorCardRelationship(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 PciCoprocessorCardRelationship(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 PciCoprocessorCardRelationship(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 PciCoprocessorCardRelationship(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 PciCoprocessorCardRelationship(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 PciCoprocessorCardRelationship(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 PciCoprocessorCardRelationship(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/pci_coprocessor_card_response.py b/intersight/model/pci_coprocessor_card_response.py index 15466450c4..36e1504b6d 100644 --- a/intersight/model/pci_coprocessor_card_response.py +++ b/intersight/model/pci_coprocessor_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/pci_device.py b/intersight/model/pci_device.py index 628641f939..f2c7546a98 100644 --- a/intersight/model/pci_device.py +++ b/intersight/model/pci_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/pci_device_all_of.py b/intersight/model/pci_device_all_of.py index fd2e37be6b..bf7c100f4c 100644 --- a/intersight/model/pci_device_all_of.py +++ b/intersight/model/pci_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/pci_device_list.py b/intersight/model/pci_device_list.py index 48d617bb6d..7eff2b208d 100644 --- a/intersight/model/pci_device_list.py +++ b/intersight/model/pci_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/pci_device_list_all_of.py b/intersight/model/pci_device_list_all_of.py index eed29815e8..0038a20d6b 100644 --- a/intersight/model/pci_device_list_all_of.py +++ b/intersight/model/pci_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/pci_device_relationship.py b/intersight/model/pci_device_relationship.py index dddaa74ed6..c8dcce28f6 100644 --- a/intersight/model/pci_device_relationship.py +++ b/intersight/model/pci_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 """ @@ -82,6 +82,8 @@ class PciDeviceRelationship(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 PciDeviceRelationship(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 PciDeviceRelationship(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 PciDeviceRelationship(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 PciDeviceRelationship(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 PciDeviceRelationship(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 PciDeviceRelationship(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 PciDeviceRelationship(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 PciDeviceRelationship(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 PciDeviceRelationship(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/pci_device_response.py b/intersight/model/pci_device_response.py index d634ebed9c..9f88981d85 100644 --- a/intersight/model/pci_device_response.py +++ b/intersight/model/pci_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/pci_link.py b/intersight/model/pci_link.py index 90afa681a0..7553d1a4ae 100644 --- a/intersight/model/pci_link.py +++ b/intersight/model/pci_link.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pci_link_all_of.py b/intersight/model/pci_link_all_of.py index fc8c340f30..1986da59d3 100644 --- a/intersight/model/pci_link_all_of.py +++ b/intersight/model/pci_link_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pci_link_list.py b/intersight/model/pci_link_list.py index c4bd81ca3d..903faa8ffa 100644 --- a/intersight/model/pci_link_list.py +++ b/intersight/model/pci_link_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/pci_link_list_all_of.py b/intersight/model/pci_link_list_all_of.py index 7c2f955672..fc12d10382 100644 --- a/intersight/model/pci_link_list_all_of.py +++ b/intersight/model/pci_link_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/pci_link_relationship.py b/intersight/model/pci_link_relationship.py index db8ce2f61d..350a75dfc8 100644 --- a/intersight/model/pci_link_relationship.py +++ b/intersight/model/pci_link_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 PciLinkRelationship(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 PciLinkRelationship(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 PciLinkRelationship(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 PciLinkRelationship(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 PciLinkRelationship(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 PciLinkRelationship(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 PciLinkRelationship(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 PciLinkRelationship(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 PciLinkRelationship(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 PciLinkRelationship(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/pci_link_response.py b/intersight/model/pci_link_response.py index ff4e3ef6e5..a29ce3c804 100644 --- a/intersight/model/pci_link_response.py +++ b/intersight/model/pci_link_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/pci_switch.py b/intersight/model/pci_switch.py index 2460e36f57..b323ae54e4 100644 --- a/intersight/model/pci_switch.py +++ b/intersight/model/pci_switch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pci_switch_all_of.py b/intersight/model/pci_switch_all_of.py index 35025e788f..0e03cf935d 100644 --- a/intersight/model/pci_switch_all_of.py +++ b/intersight/model/pci_switch_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pci_switch_list.py b/intersight/model/pci_switch_list.py index 11f6c35570..39375a6b80 100644 --- a/intersight/model/pci_switch_list.py +++ b/intersight/model/pci_switch_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/pci_switch_list_all_of.py b/intersight/model/pci_switch_list_all_of.py index 28b1e687ec..ca014f6f9b 100644 --- a/intersight/model/pci_switch_list_all_of.py +++ b/intersight/model/pci_switch_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/pci_switch_relationship.py b/intersight/model/pci_switch_relationship.py index 0aeaa219de..0bbd3bc816 100644 --- a/intersight/model/pci_switch_relationship.py +++ b/intersight/model/pci_switch_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 PciSwitchRelationship(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 PciSwitchRelationship(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 PciSwitchRelationship(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 PciSwitchRelationship(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 PciSwitchRelationship(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 PciSwitchRelationship(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 PciSwitchRelationship(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 PciSwitchRelationship(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 PciSwitchRelationship(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 PciSwitchRelationship(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/pci_switch_response.py b/intersight/model/pci_switch_response.py index baa1989bb1..e5609e77ed 100644 --- a/intersight/model/pci_switch_response.py +++ b/intersight/model/pci_switch_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/pkix_distinguished_name.py b/intersight/model/pkix_distinguished_name.py index a84bbce9a9..d61c4b0e07 100644 --- a/intersight/model/pkix_distinguished_name.py +++ b/intersight/model/pkix_distinguished_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/pkix_distinguished_name_all_of.py b/intersight/model/pkix_distinguished_name_all_of.py index d3c486a8d3..0fb626d35c 100644 --- a/intersight/model/pkix_distinguished_name_all_of.py +++ b/intersight/model/pkix_distinguished_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/pkix_ecdsa_key_spec.py b/intersight/model/pkix_ecdsa_key_spec.py index 974affba47..6028f81624 100644 --- a/intersight/model/pkix_ecdsa_key_spec.py +++ b/intersight/model/pkix_ecdsa_key_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pkix_ecdsa_key_spec_all_of.py b/intersight/model/pkix_ecdsa_key_spec_all_of.py index c9677dca78..d27ad3a257 100644 --- a/intersight/model/pkix_ecdsa_key_spec_all_of.py +++ b/intersight/model/pkix_ecdsa_key_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pkix_eddsa_key_spec.py b/intersight/model/pkix_eddsa_key_spec.py index 5b0901a91f..6bf7de6c8f 100644 --- a/intersight/model/pkix_eddsa_key_spec.py +++ b/intersight/model/pkix_eddsa_key_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pkix_eddsa_key_spec_all_of.py b/intersight/model/pkix_eddsa_key_spec_all_of.py index 003d34a059..b28f23e3ad 100644 --- a/intersight/model/pkix_eddsa_key_spec_all_of.py +++ b/intersight/model/pkix_eddsa_key_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pkix_key_generation_spec.py b/intersight/model/pkix_key_generation_spec.py index ce9734b6e1..f4f30aa0aa 100644 --- a/intersight/model/pkix_key_generation_spec.py +++ b/intersight/model/pkix_key_generation_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pkix_key_generation_spec_all_of.py b/intersight/model/pkix_key_generation_spec_all_of.py index 7e636f6a74..47f4605480 100644 --- a/intersight/model/pkix_key_generation_spec_all_of.py +++ b/intersight/model/pkix_key_generation_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pkix_rsa_algorithm.py b/intersight/model/pkix_rsa_algorithm.py index dd86441106..494b07aee7 100644 --- a/intersight/model/pkix_rsa_algorithm.py +++ b/intersight/model/pkix_rsa_algorithm.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pkix_rsa_algorithm_all_of.py b/intersight/model/pkix_rsa_algorithm_all_of.py index c969a30349..f66b679513 100644 --- a/intersight/model/pkix_rsa_algorithm_all_of.py +++ b/intersight/model/pkix_rsa_algorithm_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/pkix_subject_alternate_name.py b/intersight/model/pkix_subject_alternate_name.py index 78e32a47df..03ac7dec26 100644 --- a/intersight/model/pkix_subject_alternate_name.py +++ b/intersight/model/pkix_subject_alternate_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/pkix_subject_alternate_name_all_of.py b/intersight/model/pkix_subject_alternate_name_all_of.py index 041638bcee..5e0df35fdd 100644 --- a/intersight/model/pkix_subject_alternate_name_all_of.py +++ b/intersight/model/pkix_subject_alternate_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/policy_abstract_config_change_detail.py b/intersight/model/policy_abstract_config_change_detail.py index aa8b81de3b..cc5ed8dfd3 100644 --- a/intersight/model/policy_abstract_config_change_detail.py +++ b/intersight/model/policy_abstract_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/policy_abstract_config_change_detail_all_of.py b/intersight/model/policy_abstract_config_change_detail_all_of.py index c109723f38..53d54de3cc 100644 --- a/intersight/model/policy_abstract_config_change_detail_all_of.py +++ b/intersight/model/policy_abstract_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/policy_abstract_config_profile.py b/intersight/model/policy_abstract_config_profile.py index b6f0f19353..8fc2ef85f9 100644 --- a/intersight/model/policy_abstract_config_profile.py +++ b/intersight/model/policy_abstract_config_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 """ @@ -34,6 +34,7 @@ def lazy_import(): from intersight.model.fabric_switch_profile import FabricSwitchProfile from intersight.model.hyperflex_cluster_profile import HyperflexClusterProfile from intersight.model.hyperflex_node_profile import HyperflexNodeProfile + from intersight.model.kubernetes_baremetal_node_profile import KubernetesBaremetalNodeProfile from intersight.model.kubernetes_cluster_profile import KubernetesClusterProfile from intersight.model.kubernetes_node_group_profile import KubernetesNodeGroupProfile from intersight.model.kubernetes_node_profile import KubernetesNodeProfile @@ -57,6 +58,7 @@ def lazy_import(): globals()['FabricSwitchProfile'] = FabricSwitchProfile globals()['HyperflexClusterProfile'] = HyperflexClusterProfile globals()['HyperflexNodeProfile'] = HyperflexNodeProfile + globals()['KubernetesBaremetalNodeProfile'] = KubernetesBaremetalNodeProfile globals()['KubernetesClusterProfile'] = KubernetesClusterProfile globals()['KubernetesNodeGroupProfile'] = KubernetesNodeGroupProfile globals()['KubernetesNodeProfile'] = KubernetesNodeProfile @@ -107,6 +109,7 @@ class PolicyAbstractConfigProfile(ModelComposed): 'FABRIC.SWITCHPROFILE': "fabric.SwitchProfile", 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile", 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile", + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile", 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile", 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", @@ -121,6 +124,7 @@ class PolicyAbstractConfigProfile(ModelComposed): 'FABRIC.SWITCHPROFILE': "fabric.SwitchProfile", 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile", 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile", + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile", 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile", 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", @@ -204,6 +208,7 @@ def discriminator(): 'fabric.SwitchProfile': FabricSwitchProfile, 'hyperflex.ClusterProfile': HyperflexClusterProfile, 'hyperflex.NodeProfile': HyperflexNodeProfile, + 'kubernetes.BaremetalNodeProfile': KubernetesBaremetalNodeProfile, 'kubernetes.ClusterProfile': KubernetesClusterProfile, 'kubernetes.NodeGroupProfile': KubernetesNodeGroupProfile, 'kubernetes.NodeProfile': KubernetesNodeProfile, diff --git a/intersight/model/policy_abstract_config_profile_all_of.py b/intersight/model/policy_abstract_config_profile_all_of.py index 012d011d2d..1da5915716 100644 --- a/intersight/model/policy_abstract_config_profile_all_of.py +++ b/intersight/model/policy_abstract_config_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 """ @@ -65,6 +65,7 @@ class PolicyAbstractConfigProfileAllOf(ModelNormal): 'FABRIC.SWITCHPROFILE': "fabric.SwitchProfile", 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile", 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile", + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile", 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile", 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", @@ -79,6 +80,7 @@ class PolicyAbstractConfigProfileAllOf(ModelNormal): 'FABRIC.SWITCHPROFILE': "fabric.SwitchProfile", 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile", 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile", + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile", 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile", 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", diff --git a/intersight/model/policy_abstract_config_profile_relationship.py b/intersight/model/policy_abstract_config_profile_relationship.py index 3155b8cd5c..6831801815 100644 --- a/intersight/model/policy_abstract_config_profile_relationship.py +++ b/intersight/model/policy_abstract_config_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 """ @@ -81,6 +81,8 @@ class PolicyAbstractConfigProfileRelationship(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 PolicyAbstractConfigProfileRelationship(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 PolicyAbstractConfigProfileRelationship(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 PolicyAbstractConfigProfileRelationship(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 PolicyAbstractConfigProfileRelationship(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 PolicyAbstractConfigProfileRelationship(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 PolicyAbstractConfigProfileRelationship(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 PolicyAbstractConfigProfileRelationship(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 PolicyAbstractConfigProfileRelationship(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 PolicyAbstractConfigProfileRelationship(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/policy_abstract_config_result.py b/intersight/model/policy_abstract_config_result.py index 699555f5af..c912cfb9b6 100644 --- a/intersight/model/policy_abstract_config_result.py +++ b/intersight/model/policy_abstract_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/policy_abstract_config_result_all_of.py b/intersight/model/policy_abstract_config_result_all_of.py index 5fc006c0b1..080ddc6a4d 100644 --- a/intersight/model/policy_abstract_config_result_all_of.py +++ b/intersight/model/policy_abstract_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/policy_abstract_config_result_entry.py b/intersight/model/policy_abstract_config_result_entry.py index 56f32e2135..9cff23b954 100644 --- a/intersight/model/policy_abstract_config_result_entry.py +++ b/intersight/model/policy_abstract_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/policy_abstract_config_result_entry_all_of.py b/intersight/model/policy_abstract_config_result_entry_all_of.py index 4117c9797d..03f54975ba 100644 --- a/intersight/model/policy_abstract_config_result_entry_all_of.py +++ b/intersight/model/policy_abstract_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/policy_abstract_policy.py b/intersight/model/policy_abstract_policy.py index e42675af7b..12b54da374 100644 --- a/intersight/model/policy_abstract_policy.py +++ b/intersight/model/policy_abstract_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 """ @@ -28,6 +28,7 @@ ) def lazy_import(): + from intersight.model.aaa_retention_policy import AaaRetentionPolicy from intersight.model.access_policy import AccessPolicy from intersight.model.adapter_config_policy import AdapterConfigPolicy from intersight.model.bios_policy import BiosPolicy @@ -93,6 +94,7 @@ def lazy_import(): from intersight.model.recovery_backup_config_policy import RecoveryBackupConfigPolicy from intersight.model.recovery_on_demand_backup import RecoveryOnDemandBackup from intersight.model.recovery_schedule_config_policy import RecoveryScheduleConfigPolicy + from intersight.model.resourcepool_pool import ResourcepoolPool from intersight.model.sdcard_policy import SdcardPolicy from intersight.model.sdwan_router_policy import SdwanRouterPolicy from intersight.model.sdwan_vmanage_account_policy import SdwanVmanageAccountPolicy @@ -116,6 +118,7 @@ def lazy_import(): from intersight.model.vnic_iscsi_static_target_policy import VnicIscsiStaticTargetPolicy from intersight.model.vnic_lan_connectivity_policy import VnicLanConnectivityPolicy from intersight.model.vnic_san_connectivity_policy import VnicSanConnectivityPolicy + globals()['AaaRetentionPolicy'] = AaaRetentionPolicy globals()['AccessPolicy'] = AccessPolicy globals()['AdapterConfigPolicy'] = AdapterConfigPolicy globals()['BiosPolicy'] = BiosPolicy @@ -181,6 +184,7 @@ def lazy_import(): globals()['RecoveryBackupConfigPolicy'] = RecoveryBackupConfigPolicy globals()['RecoveryOnDemandBackup'] = RecoveryOnDemandBackup globals()['RecoveryScheduleConfigPolicy'] = RecoveryScheduleConfigPolicy + globals()['ResourcepoolPool'] = ResourcepoolPool globals()['SdcardPolicy'] = SdcardPolicy globals()['SdwanRouterPolicy'] = SdwanRouterPolicy globals()['SdwanVmanageAccountPolicy'] = SdwanVmanageAccountPolicy @@ -232,6 +236,7 @@ class PolicyAbstractPolicy(ModelComposed): allowed_values = { ('class_id',): { + 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy", 'ACCESS.POLICY': "access.Policy", 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy", 'BIOS.POLICY': "bios.Policy", @@ -288,6 +293,7 @@ class PolicyAbstractPolicy(ModelComposed): 'RECOVERY.BACKUPCONFIGPOLICY': "recovery.BackupConfigPolicy", 'RECOVERY.ONDEMANDBACKUP': "recovery.OnDemandBackup", 'RECOVERY.SCHEDULECONFIGPOLICY': "recovery.ScheduleConfigPolicy", + 'RESOURCEPOOL.POOL': "resourcepool.Pool", 'SDCARD.POLICY': "sdcard.Policy", 'SDWAN.ROUTERPOLICY': "sdwan.RouterPolicy", 'SDWAN.VMANAGEACCOUNTPOLICY': "sdwan.VmanageAccountPolicy", @@ -313,6 +319,7 @@ class PolicyAbstractPolicy(ModelComposed): 'VNIC.SANCONNECTIVITYPOLICY': "vnic.SanConnectivityPolicy", }, ('object_type',): { + 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy", 'ACCESS.POLICY': "access.Policy", 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy", 'BIOS.POLICY': "bios.Policy", @@ -369,6 +376,7 @@ class PolicyAbstractPolicy(ModelComposed): 'RECOVERY.BACKUPCONFIGPOLICY': "recovery.BackupConfigPolicy", 'RECOVERY.ONDEMANDBACKUP': "recovery.OnDemandBackup", 'RECOVERY.SCHEDULECONFIGPOLICY': "recovery.ScheduleConfigPolicy", + 'RESOURCEPOOL.POOL': "resourcepool.Pool", 'SDCARD.POLICY': "sdcard.Policy", 'SDWAN.ROUTERPOLICY': "sdwan.RouterPolicy", 'SDWAN.VMANAGEACCOUNTPOLICY': "sdwan.VmanageAccountPolicy", @@ -455,6 +463,7 @@ def openapi_types(): def discriminator(): lazy_import() val = { + 'aaa.RetentionPolicy': AaaRetentionPolicy, 'access.Policy': AccessPolicy, 'adapter.ConfigPolicy': AdapterConfigPolicy, 'bios.Policy': BiosPolicy, @@ -514,6 +523,7 @@ def discriminator(): 'recovery.BackupConfigPolicy': RecoveryBackupConfigPolicy, 'recovery.OnDemandBackup': RecoveryOnDemandBackup, 'recovery.ScheduleConfigPolicy': RecoveryScheduleConfigPolicy, + 'resourcepool.Pool': ResourcepoolPool, 'sdcard.Policy': SdcardPolicy, 'sdwan.RouterPolicy': SdwanRouterPolicy, 'sdwan.VmanageAccountPolicy': SdwanVmanageAccountPolicy, diff --git a/intersight/model/policy_abstract_policy_all_of.py b/intersight/model/policy_abstract_policy_all_of.py index ebf0b47adb..73424e5a1b 100644 --- a/intersight/model/policy_abstract_policy_all_of.py +++ b/intersight/model/policy_abstract_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 """ @@ -54,6 +54,7 @@ class PolicyAbstractPolicyAllOf(ModelNormal): allowed_values = { ('class_id',): { + 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy", 'ACCESS.POLICY': "access.Policy", 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy", 'BIOS.POLICY': "bios.Policy", @@ -110,6 +111,7 @@ class PolicyAbstractPolicyAllOf(ModelNormal): 'RECOVERY.BACKUPCONFIGPOLICY': "recovery.BackupConfigPolicy", 'RECOVERY.ONDEMANDBACKUP': "recovery.OnDemandBackup", 'RECOVERY.SCHEDULECONFIGPOLICY': "recovery.ScheduleConfigPolicy", + 'RESOURCEPOOL.POOL': "resourcepool.Pool", 'SDCARD.POLICY': "sdcard.Policy", 'SDWAN.ROUTERPOLICY': "sdwan.RouterPolicy", 'SDWAN.VMANAGEACCOUNTPOLICY': "sdwan.VmanageAccountPolicy", @@ -135,6 +137,7 @@ class PolicyAbstractPolicyAllOf(ModelNormal): 'VNIC.SANCONNECTIVITYPOLICY': "vnic.SanConnectivityPolicy", }, ('object_type',): { + 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy", 'ACCESS.POLICY': "access.Policy", 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy", 'BIOS.POLICY': "bios.Policy", @@ -191,6 +194,7 @@ class PolicyAbstractPolicyAllOf(ModelNormal): 'RECOVERY.BACKUPCONFIGPOLICY': "recovery.BackupConfigPolicy", 'RECOVERY.ONDEMANDBACKUP': "recovery.OnDemandBackup", 'RECOVERY.SCHEDULECONFIGPOLICY': "recovery.ScheduleConfigPolicy", + 'RESOURCEPOOL.POOL': "resourcepool.Pool", 'SDCARD.POLICY': "sdcard.Policy", 'SDWAN.ROUTERPOLICY': "sdwan.RouterPolicy", 'SDWAN.VMANAGEACCOUNTPOLICY': "sdwan.VmanageAccountPolicy", diff --git a/intersight/model/policy_abstract_policy_relationship.py b/intersight/model/policy_abstract_policy_relationship.py index fbabda25d9..3902ad4e2a 100644 --- a/intersight/model/policy_abstract_policy_relationship.py +++ b/intersight/model/policy_abstract_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 """ @@ -72,6 +72,8 @@ class PolicyAbstractPolicyRelationship(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 PolicyAbstractPolicyRelationship(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 PolicyAbstractPolicyRelationship(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 PolicyAbstractPolicyRelationship(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 PolicyAbstractPolicyRelationship(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 PolicyAbstractPolicyRelationship(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 PolicyAbstractPolicyRelationship(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 PolicyAbstractPolicyRelationship(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 PolicyAbstractPolicyRelationship(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 PolicyAbstractPolicyRelationship(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/policy_abstract_profile.py b/intersight/model/policy_abstract_profile.py index 7fc90297c3..011200bb15 100644 --- a/intersight/model/policy_abstract_profile.py +++ b/intersight/model/policy_abstract_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 """ @@ -36,6 +36,7 @@ def lazy_import(): from intersight.model.hyperflex_cluster_profile import HyperflexClusterProfile from intersight.model.hyperflex_node_profile import HyperflexNodeProfile from intersight.model.kubernetes_aci_cni_profile import KubernetesAciCniProfile + from intersight.model.kubernetes_baremetal_node_profile import KubernetesBaremetalNodeProfile from intersight.model.kubernetes_cluster_profile import KubernetesClusterProfile from intersight.model.kubernetes_node_group_profile import KubernetesNodeGroupProfile from intersight.model.kubernetes_node_profile import KubernetesNodeProfile @@ -60,6 +61,7 @@ def lazy_import(): globals()['HyperflexClusterProfile'] = HyperflexClusterProfile globals()['HyperflexNodeProfile'] = HyperflexNodeProfile globals()['KubernetesAciCniProfile'] = KubernetesAciCniProfile + globals()['KubernetesBaremetalNodeProfile'] = KubernetesBaremetalNodeProfile globals()['KubernetesClusterProfile'] = KubernetesClusterProfile globals()['KubernetesNodeGroupProfile'] = KubernetesNodeGroupProfile globals()['KubernetesNodeProfile'] = KubernetesNodeProfile @@ -111,6 +113,7 @@ class PolicyAbstractProfile(ModelComposed): 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile", 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile", 'KUBERNETES.ACICNIPROFILE': "kubernetes.AciCniProfile", + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile", 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile", 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", @@ -127,6 +130,7 @@ class PolicyAbstractProfile(ModelComposed): 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile", 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile", 'KUBERNETES.ACICNIPROFILE': "kubernetes.AciCniProfile", + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile", 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile", 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", @@ -209,6 +213,7 @@ def discriminator(): 'hyperflex.ClusterProfile': HyperflexClusterProfile, 'hyperflex.NodeProfile': HyperflexNodeProfile, 'kubernetes.AciCniProfile': KubernetesAciCniProfile, + 'kubernetes.BaremetalNodeProfile': KubernetesBaremetalNodeProfile, 'kubernetes.ClusterProfile': KubernetesClusterProfile, 'kubernetes.NodeGroupProfile': KubernetesNodeGroupProfile, 'kubernetes.NodeProfile': KubernetesNodeProfile, diff --git a/intersight/model/policy_abstract_profile_all_of.py b/intersight/model/policy_abstract_profile_all_of.py index a1fe443c26..4f435cac99 100644 --- a/intersight/model/policy_abstract_profile_all_of.py +++ b/intersight/model/policy_abstract_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 """ @@ -65,6 +65,7 @@ class PolicyAbstractProfileAllOf(ModelNormal): 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile", 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile", 'KUBERNETES.ACICNIPROFILE': "kubernetes.AciCniProfile", + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile", 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile", 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", @@ -81,6 +82,7 @@ class PolicyAbstractProfileAllOf(ModelNormal): 'HYPERFLEX.CLUSTERPROFILE': "hyperflex.ClusterProfile", 'HYPERFLEX.NODEPROFILE': "hyperflex.NodeProfile", 'KUBERNETES.ACICNIPROFILE': "kubernetes.AciCniProfile", + 'KUBERNETES.BAREMETALNODEPROFILE': "kubernetes.BaremetalNodeProfile", 'KUBERNETES.CLUSTERPROFILE': "kubernetes.ClusterProfile", 'KUBERNETES.NODEGROUPPROFILE': "kubernetes.NodeGroupProfile", 'KUBERNETES.VIRTUALMACHINENODEPROFILE': "kubernetes.VirtualMachineNodeProfile", diff --git a/intersight/model/policy_abstract_profile_relationship.py b/intersight/model/policy_abstract_profile_relationship.py index 2cd8c8eef0..141f6f7194 100644 --- a/intersight/model/policy_abstract_profile_relationship.py +++ b/intersight/model/policy_abstract_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 """ @@ -75,6 +75,8 @@ class PolicyAbstractProfileRelationship(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", @@ -91,6 +93,7 @@ class PolicyAbstractProfileRelationship(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", @@ -139,9 +142,12 @@ class PolicyAbstractProfileRelationship(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", @@ -205,10 +211,6 @@ class PolicyAbstractProfileRelationship(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", @@ -217,6 +219,7 @@ class PolicyAbstractProfileRelationship(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", @@ -465,6 +468,7 @@ class PolicyAbstractProfileRelationship(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", @@ -634,6 +638,11 @@ class PolicyAbstractProfileRelationship(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", @@ -749,6 +758,7 @@ class PolicyAbstractProfileRelationship(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", @@ -780,6 +790,7 @@ class PolicyAbstractProfileRelationship(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", @@ -812,12 +823,14 @@ class PolicyAbstractProfileRelationship(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/policy_action_qualifier.py b/intersight/model/policy_action_qualifier.py index 2657349350..1770ed4fc0 100644 --- a/intersight/model/policy_action_qualifier.py +++ b/intersight/model/policy_action_qualifier.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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 PolicyActionQualifier(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/policy_config_change.py b/intersight/model/policy_config_change.py index 349b0dfe68..6942390c5b 100644 --- a/intersight/model/policy_config_change.py +++ b/intersight/model/policy_config_change.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/policy_config_change_all_of.py b/intersight/model/policy_config_change_all_of.py index 8d90d3103e..e44c544b91 100644 --- a/intersight/model/policy_config_change_all_of.py +++ b/intersight/model/policy_config_change_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/policy_config_change_context.py b/intersight/model/policy_config_change_context.py index 23bee126ae..a933e3a7b0 100644 --- a/intersight/model/policy_config_change_context.py +++ b/intersight/model/policy_config_change_context.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/policy_config_change_context_all_of.py b/intersight/model/policy_config_change_context_all_of.py index 1ba822cd2e..4889154172 100644 --- a/intersight/model/policy_config_change_context_all_of.py +++ b/intersight/model/policy_config_change_context_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/policy_config_context.py b/intersight/model/policy_config_context.py index 8ab5f50717..5c3fa5551a 100644 --- a/intersight/model/policy_config_context.py +++ b/intersight/model/policy_config_context.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/policy_config_context_all_of.py b/intersight/model/policy_config_context_all_of.py index 81f1d1d19c..6797f38716 100644 --- a/intersight/model/policy_config_context_all_of.py +++ b/intersight/model/policy_config_context_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/policy_config_result_context.py b/intersight/model/policy_config_result_context.py index d105578bb5..63eda48220 100644 --- a/intersight/model/policy_config_result_context.py +++ b/intersight/model/policy_config_result_context.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/policy_config_result_context_all_of.py b/intersight/model/policy_config_result_context_all_of.py index f3a1b602df..2523bf3bc7 100644 --- a/intersight/model/policy_config_result_context_all_of.py +++ b/intersight/model/policy_config_result_context_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/policy_qualifier.py b/intersight/model/policy_qualifier.py index 822ff523df..eb59d3d470 100644 --- a/intersight/model/policy_qualifier.py +++ b/intersight/model/policy_qualifier.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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 PolicyQualifier(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/policyinventory_abstract_device_info.py b/intersight/model/policyinventory_abstract_device_info.py index fc49579713..292d5e4e1d 100644 --- a/intersight/model/policyinventory_abstract_device_info.py +++ b/intersight/model/policyinventory_abstract_device_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/policyinventory_abstract_device_info_all_of.py b/intersight/model/policyinventory_abstract_device_info_all_of.py index 06b9c2d1ac..b74fe8340c 100644 --- a/intersight/model/policyinventory_abstract_device_info_all_of.py +++ b/intersight/model/policyinventory_abstract_device_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/policyinventory_job_info.py b/intersight/model/policyinventory_job_info.py index 82ac59f3e0..f1d2dfe542 100644 --- a/intersight/model/policyinventory_job_info.py +++ b/intersight/model/policyinventory_job_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/policyinventory_job_info_all_of.py b/intersight/model/policyinventory_job_info_all_of.py index 2e16bb73c4..fbe63e5279 100644 --- a/intersight/model/policyinventory_job_info_all_of.py +++ b/intersight/model/policyinventory_job_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/pool_abstract_block.py b/intersight/model/pool_abstract_block.py index a69ddc9c9f..f9ef955c46 100644 --- a/intersight/model/pool_abstract_block.py +++ b/intersight/model/pool_abstract_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/pool_abstract_block_all_of.py b/intersight/model/pool_abstract_block_all_of.py index 58e2be608f..5c0d5557e5 100644 --- a/intersight/model/pool_abstract_block_all_of.py +++ b/intersight/model/pool_abstract_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/pool_abstract_block_lease.py b/intersight/model/pool_abstract_block_lease.py index a7e9f8c51f..76e28af629 100644 --- a/intersight/model/pool_abstract_block_lease.py +++ b/intersight/model/pool_abstract_block_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/pool_abstract_block_lease_all_of.py b/intersight/model/pool_abstract_block_lease_all_of.py index bc87e3bf0b..c47e21f8a4 100644 --- a/intersight/model/pool_abstract_block_lease_all_of.py +++ b/intersight/model/pool_abstract_block_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/pool_abstract_block_type.py b/intersight/model/pool_abstract_block_type.py index e034d500a5..874ad48f05 100644 --- a/intersight/model/pool_abstract_block_type.py +++ b/intersight/model/pool_abstract_block_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/pool_abstract_block_type_all_of.py b/intersight/model/pool_abstract_block_type_all_of.py index 908758d58a..24208c12ed 100644 --- a/intersight/model/pool_abstract_block_type_all_of.py +++ b/intersight/model/pool_abstract_block_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/pool_abstract_lease.py b/intersight/model/pool_abstract_lease.py index 186cadc901..081906563f 100644 --- a/intersight/model/pool_abstract_lease.py +++ b/intersight/model/pool_abstract_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 """ @@ -38,6 +38,8 @@ def lazy_import(): from intersight.model.mo_tag import MoTag from intersight.model.mo_version_context import MoVersionContext from intersight.model.pool_abstract_lease_all_of import PoolAbstractLeaseAllOf + from intersight.model.resourcepool_lease import ResourcepoolLease + from intersight.model.uuidpool_uuid_lease import UuidpoolUuidLease globals()['DisplayNames'] = DisplayNames globals()['FcpoolLease'] = FcpoolLease globals()['IppoolIpLease'] = IppoolIpLease @@ -48,6 +50,8 @@ def lazy_import(): globals()['MoTag'] = MoTag globals()['MoVersionContext'] = MoVersionContext globals()['PoolAbstractLeaseAllOf'] = PoolAbstractLeaseAllOf + globals()['ResourcepoolLease'] = ResourcepoolLease + globals()['UuidpoolUuidLease'] = UuidpoolUuidLease class PoolAbstractLease(ModelComposed): @@ -80,12 +84,16 @@ class PoolAbstractLease(ModelComposed): 'IPPOOL.IPLEASE': "ippool.IpLease", 'IQNPOOL.LEASE': "iqnpool.Lease", 'MACPOOL.LEASE': "macpool.Lease", + 'RESOURCEPOOL.LEASE': "resourcepool.Lease", + 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease", }, ('object_type',): { 'FCPOOL.LEASE': "fcpool.Lease", 'IPPOOL.IPLEASE': "ippool.IpLease", 'IQNPOOL.LEASE': "iqnpool.Lease", 'MACPOOL.LEASE': "macpool.Lease", + 'RESOURCEPOOL.LEASE': "resourcepool.Lease", + 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease", }, ('allocation_type',): { 'DYNAMIC': "dynamic", @@ -145,6 +153,8 @@ def discriminator(): 'ippool.IpLease': IppoolIpLease, 'iqnpool.Lease': IqnpoolLease, 'macpool.Lease': MacpoolLease, + 'resourcepool.Lease': ResourcepoolLease, + 'uuidpool.UuidLease': UuidpoolUuidLease, } if not val: return None diff --git a/intersight/model/pool_abstract_lease_all_of.py b/intersight/model/pool_abstract_lease_all_of.py index f5f75d4972..a3a91f3c60 100644 --- a/intersight/model/pool_abstract_lease_all_of.py +++ b/intersight/model/pool_abstract_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 """ @@ -58,12 +58,16 @@ class PoolAbstractLeaseAllOf(ModelNormal): 'IPPOOL.IPLEASE': "ippool.IpLease", 'IQNPOOL.LEASE': "iqnpool.Lease", 'MACPOOL.LEASE': "macpool.Lease", + 'RESOURCEPOOL.LEASE': "resourcepool.Lease", + 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease", }, ('object_type',): { 'FCPOOL.LEASE': "fcpool.Lease", 'IPPOOL.IPLEASE': "ippool.IpLease", 'IQNPOOL.LEASE': "iqnpool.Lease", 'MACPOOL.LEASE': "macpool.Lease", + 'RESOURCEPOOL.LEASE': "resourcepool.Lease", + 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease", }, ('allocation_type',): { 'DYNAMIC': "dynamic", diff --git a/intersight/model/pool_abstract_pool.py b/intersight/model/pool_abstract_pool.py index 6be1d27871..99f3c4e4f7 100644 --- a/intersight/model/pool_abstract_pool.py +++ b/intersight/model/pool_abstract_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 """ @@ -39,6 +39,7 @@ def lazy_import(): from intersight.model.mo_version_context import MoVersionContext from intersight.model.policy_abstract_policy import PolicyAbstractPolicy from intersight.model.pool_abstract_pool_all_of import PoolAbstractPoolAllOf + from intersight.model.resourcepool_pool import ResourcepoolPool from intersight.model.uuidpool_pool import UuidpoolPool globals()['DisplayNames'] = DisplayNames globals()['FcpoolPool'] = FcpoolPool @@ -51,6 +52,7 @@ def lazy_import(): globals()['MoVersionContext'] = MoVersionContext globals()['PolicyAbstractPolicy'] = PolicyAbstractPolicy globals()['PoolAbstractPoolAllOf'] = PoolAbstractPoolAllOf + globals()['ResourcepoolPool'] = ResourcepoolPool globals()['UuidpoolPool'] = UuidpoolPool @@ -85,6 +87,7 @@ class PoolAbstractPool(ModelComposed): 'IPPOOL.SHADOWPOOL': "ippool.ShadowPool", 'IQNPOOL.POOL': "iqnpool.Pool", 'MACPOOL.POOL': "macpool.Pool", + 'RESOURCEPOOL.POOL': "resourcepool.Pool", 'UUIDPOOL.POOL': "uuidpool.Pool", }, ('object_type',): { @@ -93,6 +96,7 @@ class PoolAbstractPool(ModelComposed): 'IPPOOL.SHADOWPOOL': "ippool.ShadowPool", 'IQNPOOL.POOL': "iqnpool.Pool", 'MACPOOL.POOL': "macpool.Pool", + 'RESOURCEPOOL.POOL': "resourcepool.Pool", 'UUIDPOOL.POOL': "uuidpool.Pool", }, ('assignment_order',): { @@ -169,6 +173,7 @@ def discriminator(): 'ippool.ShadowPool': IppoolShadowPool, 'iqnpool.Pool': IqnpoolPool, 'macpool.Pool': MacpoolPool, + 'resourcepool.Pool': ResourcepoolPool, 'uuidpool.Pool': UuidpoolPool, } if not val: diff --git a/intersight/model/pool_abstract_pool_all_of.py b/intersight/model/pool_abstract_pool_all_of.py index aa7243bbd1..f0223e27ea 100644 --- a/intersight/model/pool_abstract_pool_all_of.py +++ b/intersight/model/pool_abstract_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 """ @@ -59,6 +59,7 @@ class PoolAbstractPoolAllOf(ModelNormal): 'IPPOOL.SHADOWPOOL': "ippool.ShadowPool", 'IQNPOOL.POOL': "iqnpool.Pool", 'MACPOOL.POOL': "macpool.Pool", + 'RESOURCEPOOL.POOL': "resourcepool.Pool", 'UUIDPOOL.POOL': "uuidpool.Pool", }, ('object_type',): { @@ -67,6 +68,7 @@ class PoolAbstractPoolAllOf(ModelNormal): 'IPPOOL.SHADOWPOOL': "ippool.ShadowPool", 'IQNPOOL.POOL': "iqnpool.Pool", 'MACPOOL.POOL': "macpool.Pool", + 'RESOURCEPOOL.POOL': "resourcepool.Pool", 'UUIDPOOL.POOL': "uuidpool.Pool", }, ('assignment_order',): { diff --git a/intersight/model/pool_abstract_pool_member.py b/intersight/model/pool_abstract_pool_member.py index 23263a6cdf..5c4bf928ea 100644 --- a/intersight/model/pool_abstract_pool_member.py +++ b/intersight/model/pool_abstract_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 """ @@ -38,6 +38,7 @@ def lazy_import(): from intersight.model.mo_tag import MoTag from intersight.model.mo_version_context import MoVersionContext from intersight.model.pool_abstract_pool_member_all_of import PoolAbstractPoolMemberAllOf + from intersight.model.resourcepool_pool_member import ResourcepoolPoolMember from intersight.model.uuidpool_pool_member import UuidpoolPoolMember globals()['DisplayNames'] = DisplayNames globals()['FcpoolPoolMember'] = FcpoolPoolMember @@ -49,6 +50,7 @@ def lazy_import(): globals()['MoTag'] = MoTag globals()['MoVersionContext'] = MoVersionContext globals()['PoolAbstractPoolMemberAllOf'] = PoolAbstractPoolMemberAllOf + globals()['ResourcepoolPoolMember'] = ResourcepoolPoolMember globals()['UuidpoolPoolMember'] = UuidpoolPoolMember @@ -82,6 +84,7 @@ class PoolAbstractPoolMember(ModelComposed): 'IPPOOL.POOLMEMBER': "ippool.PoolMember", 'IQNPOOL.POOLMEMBER': "iqnpool.PoolMember", 'MACPOOL.POOLMEMBER': "macpool.PoolMember", + 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember", 'UUIDPOOL.POOLMEMBER': "uuidpool.PoolMember", }, ('object_type',): { @@ -89,6 +92,7 @@ class PoolAbstractPoolMember(ModelComposed): 'IPPOOL.POOLMEMBER': "ippool.PoolMember", 'IQNPOOL.POOLMEMBER': "iqnpool.PoolMember", 'MACPOOL.POOLMEMBER': "macpool.PoolMember", + 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember", 'UUIDPOOL.POOLMEMBER': "uuidpool.PoolMember", }, } @@ -145,6 +149,7 @@ def discriminator(): 'ippool.PoolMember': IppoolPoolMember, 'iqnpool.PoolMember': IqnpoolPoolMember, 'macpool.PoolMember': MacpoolPoolMember, + 'resourcepool.PoolMember': ResourcepoolPoolMember, 'uuidpool.PoolMember': UuidpoolPoolMember, } if not val: diff --git a/intersight/model/pool_abstract_pool_member_all_of.py b/intersight/model/pool_abstract_pool_member_all_of.py index 8c2d3b93e8..de71b07299 100644 --- a/intersight/model/pool_abstract_pool_member_all_of.py +++ b/intersight/model/pool_abstract_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 """ @@ -58,6 +58,7 @@ class PoolAbstractPoolMemberAllOf(ModelNormal): 'IPPOOL.POOLMEMBER': "ippool.PoolMember", 'IQNPOOL.POOLMEMBER': "iqnpool.PoolMember", 'MACPOOL.POOLMEMBER': "macpool.PoolMember", + 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember", 'UUIDPOOL.POOLMEMBER': "uuidpool.PoolMember", }, ('object_type',): { @@ -65,6 +66,7 @@ class PoolAbstractPoolMemberAllOf(ModelNormal): 'IPPOOL.POOLMEMBER': "ippool.PoolMember", 'IQNPOOL.POOLMEMBER': "iqnpool.PoolMember", 'MACPOOL.POOLMEMBER': "macpool.PoolMember", + 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember", 'UUIDPOOL.POOLMEMBER': "uuidpool.PoolMember", }, } diff --git a/intersight/model/port_group.py b/intersight/model/port_group.py index 0aa96ba7c3..078b2a532a 100644 --- a/intersight/model/port_group.py +++ b/intersight/model/port_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/port_group_all_of.py b/intersight/model/port_group_all_of.py index fed9055e5f..bf8e1cb1c9 100644 --- a/intersight/model/port_group_all_of.py +++ b/intersight/model/port_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/port_group_list.py b/intersight/model/port_group_list.py index 6a3b2249f0..282c93225f 100644 --- a/intersight/model/port_group_list.py +++ b/intersight/model/port_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/port_group_list_all_of.py b/intersight/model/port_group_list_all_of.py index 466adf29fa..589fc92bb8 100644 --- a/intersight/model/port_group_list_all_of.py +++ b/intersight/model/port_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/port_group_relationship.py b/intersight/model/port_group_relationship.py index feefba82f7..3c06cf7af9 100644 --- a/intersight/model/port_group_relationship.py +++ b/intersight/model/port_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 PortGroupRelationship(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 PortGroupRelationship(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 PortGroupRelationship(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 PortGroupRelationship(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 PortGroupRelationship(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 PortGroupRelationship(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 PortGroupRelationship(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 PortGroupRelationship(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 PortGroupRelationship(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 PortGroupRelationship(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/port_group_response.py b/intersight/model/port_group_response.py index 2ab7487a14..f9441f90e3 100644 --- a/intersight/model/port_group_response.py +++ b/intersight/model/port_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/port_interface_base.py b/intersight/model/port_interface_base.py index b557fcc189..b4ad0ec55d 100644 --- a/intersight/model/port_interface_base.py +++ b/intersight/model/port_interface_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/port_interface_base_all_of.py b/intersight/model/port_interface_base_all_of.py index 055cacc51a..f618121feb 100644 --- a/intersight/model/port_interface_base_all_of.py +++ b/intersight/model/port_interface_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/port_interface_base_relationship.py b/intersight/model/port_interface_base_relationship.py index b9a7812110..365d7972db 100644 --- a/intersight/model/port_interface_base_relationship.py +++ b/intersight/model/port_interface_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 PortInterfaceBaseRelationship(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 PortInterfaceBaseRelationship(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 PortInterfaceBaseRelationship(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 PortInterfaceBaseRelationship(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 PortInterfaceBaseRelationship(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 PortInterfaceBaseRelationship(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 PortInterfaceBaseRelationship(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 PortInterfaceBaseRelationship(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 PortInterfaceBaseRelationship(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 PortInterfaceBaseRelationship(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/port_mac_binding.py b/intersight/model/port_mac_binding.py index 514944980d..012cb15728 100644 --- a/intersight/model/port_mac_binding.py +++ b/intersight/model/port_mac_binding.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/port_mac_binding_all_of.py b/intersight/model/port_mac_binding_all_of.py index dd015ccdea..4aa3192fcd 100644 --- a/intersight/model/port_mac_binding_all_of.py +++ b/intersight/model/port_mac_binding_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/port_mac_binding_list.py b/intersight/model/port_mac_binding_list.py index add6a9510a..6155681142 100644 --- a/intersight/model/port_mac_binding_list.py +++ b/intersight/model/port_mac_binding_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/port_mac_binding_list_all_of.py b/intersight/model/port_mac_binding_list_all_of.py index 7f06ed223c..1c0189fbe2 100644 --- a/intersight/model/port_mac_binding_list_all_of.py +++ b/intersight/model/port_mac_binding_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/port_mac_binding_relationship.py b/intersight/model/port_mac_binding_relationship.py index cd20eb4023..c9f86ebedf 100644 --- a/intersight/model/port_mac_binding_relationship.py +++ b/intersight/model/port_mac_binding_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 PortMacBindingRelationship(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 PortMacBindingRelationship(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 PortMacBindingRelationship(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 PortMacBindingRelationship(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 PortMacBindingRelationship(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 PortMacBindingRelationship(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 PortMacBindingRelationship(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 PortMacBindingRelationship(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 PortMacBindingRelationship(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 PortMacBindingRelationship(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/port_mac_binding_response.py b/intersight/model/port_mac_binding_response.py index 29c8344b9e..d2744c8153 100644 --- a/intersight/model/port_mac_binding_response.py +++ b/intersight/model/port_mac_binding_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/port_physical.py b/intersight/model/port_physical.py index 2f472ee387..a8f8d1567c 100644 --- a/intersight/model/port_physical.py +++ b/intersight/model/port_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/port_physical_all_of.py b/intersight/model/port_physical_all_of.py index c2b7ea9ef5..75131d33de 100644 --- a/intersight/model/port_physical_all_of.py +++ b/intersight/model/port_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/port_sub_group.py b/intersight/model/port_sub_group.py index 8f615d1cb6..66347f720b 100644 --- a/intersight/model/port_sub_group.py +++ b/intersight/model/port_sub_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/port_sub_group_all_of.py b/intersight/model/port_sub_group_all_of.py index 3830385172..abf3afdaa4 100644 --- a/intersight/model/port_sub_group_all_of.py +++ b/intersight/model/port_sub_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/port_sub_group_list.py b/intersight/model/port_sub_group_list.py index c68105e525..458c38d318 100644 --- a/intersight/model/port_sub_group_list.py +++ b/intersight/model/port_sub_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/port_sub_group_list_all_of.py b/intersight/model/port_sub_group_list_all_of.py index 5d9fe0cf36..dd24c8656c 100644 --- a/intersight/model/port_sub_group_list_all_of.py +++ b/intersight/model/port_sub_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/port_sub_group_relationship.py b/intersight/model/port_sub_group_relationship.py index d770e9aaa8..6aaec4c652 100644 --- a/intersight/model/port_sub_group_relationship.py +++ b/intersight/model/port_sub_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 """ @@ -82,6 +82,8 @@ class PortSubGroupRelationship(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 PortSubGroupRelationship(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 PortSubGroupRelationship(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 PortSubGroupRelationship(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 PortSubGroupRelationship(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 PortSubGroupRelationship(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 PortSubGroupRelationship(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 PortSubGroupRelationship(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 PortSubGroupRelationship(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 PortSubGroupRelationship(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/port_sub_group_response.py b/intersight/model/port_sub_group_response.py index 5a49f2d63a..05eaec917d 100644 --- a/intersight/model/port_sub_group_response.py +++ b/intersight/model/port_sub_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/power_control_state.py b/intersight/model/power_control_state.py index b8f7d2194e..34272f9943 100644 --- a/intersight/model/power_control_state.py +++ b/intersight/model/power_control_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/power_control_state_all_of.py b/intersight/model/power_control_state_all_of.py index 759e1d0e90..b2630ac2d3 100644 --- a/intersight/model/power_control_state_all_of.py +++ b/intersight/model/power_control_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/power_control_state_list.py b/intersight/model/power_control_state_list.py index 201f2b594d..bfc6477cac 100644 --- a/intersight/model/power_control_state_list.py +++ b/intersight/model/power_control_state_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/power_control_state_list_all_of.py b/intersight/model/power_control_state_list_all_of.py index 6a0d080625..96df0ae01d 100644 --- a/intersight/model/power_control_state_list_all_of.py +++ b/intersight/model/power_control_state_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/power_control_state_relationship.py b/intersight/model/power_control_state_relationship.py index 3e4305a99b..1e6949747b 100644 --- a/intersight/model/power_control_state_relationship.py +++ b/intersight/model/power_control_state_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 PowerControlStateRelationship(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 PowerControlStateRelationship(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 PowerControlStateRelationship(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 PowerControlStateRelationship(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 PowerControlStateRelationship(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 PowerControlStateRelationship(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 PowerControlStateRelationship(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 PowerControlStateRelationship(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 PowerControlStateRelationship(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 PowerControlStateRelationship(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/power_control_state_response.py b/intersight/model/power_control_state_response.py index a34d818b32..1f5e9e596a 100644 --- a/intersight/model/power_control_state_response.py +++ b/intersight/model/power_control_state_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/power_policy.py b/intersight/model/power_policy.py index c9904adace..8997c49234 100644 --- a/intersight/model/power_policy.py +++ b/intersight/model/power_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/power_policy_all_of.py b/intersight/model/power_policy_all_of.py index ea3b211e69..f89380eab2 100644 --- a/intersight/model/power_policy_all_of.py +++ b/intersight/model/power_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/power_policy_list.py b/intersight/model/power_policy_list.py index 458abaaed6..cf0a5c7860 100644 --- a/intersight/model/power_policy_list.py +++ b/intersight/model/power_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/power_policy_list_all_of.py b/intersight/model/power_policy_list_all_of.py index 38e72e2e50..23eeeac609 100644 --- a/intersight/model/power_policy_list_all_of.py +++ b/intersight/model/power_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/power_policy_response.py b/intersight/model/power_policy_response.py index 95d132c343..696cbd3261 100644 --- a/intersight/model/power_policy_response.py +++ b/intersight/model/power_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/processor_unit.py b/intersight/model/processor_unit.py index c0cdcea2f7..b0287bca9b 100644 --- a/intersight/model/processor_unit.py +++ b/intersight/model/processor_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 """ @@ -129,6 +129,8 @@ class ProcessorUnit(ModelComposed): 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError", 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning", 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical", + 'MEMORYBANKERROR': "MemoryBankError", + 'MEMORYRANKERROR': "MemoryRankError", 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical", 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning", 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical", diff --git a/intersight/model/processor_unit_all_of.py b/intersight/model/processor_unit_all_of.py index 5309077198..4eda5128f3 100644 --- a/intersight/model/processor_unit_all_of.py +++ b/intersight/model/processor_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 """ @@ -115,6 +115,8 @@ class ProcessorUnitAllOf(ModelNormal): 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError", 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning", 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical", + 'MEMORYBANKERROR': "MemoryBankError", + 'MEMORYRANKERROR': "MemoryRankError", 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical", 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning", 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical", diff --git a/intersight/model/processor_unit_list.py b/intersight/model/processor_unit_list.py index 987422f232..85e504c921 100644 --- a/intersight/model/processor_unit_list.py +++ b/intersight/model/processor_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/processor_unit_list_all_of.py b/intersight/model/processor_unit_list_all_of.py index bb0ea130cc..a60af2111f 100644 --- a/intersight/model/processor_unit_list_all_of.py +++ b/intersight/model/processor_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/processor_unit_relationship.py b/intersight/model/processor_unit_relationship.py index cd7cc6372d..719426b542 100644 --- a/intersight/model/processor_unit_relationship.py +++ b/intersight/model/processor_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 """ @@ -126,6 +126,8 @@ class ProcessorUnitRelationship(ModelComposed): 'MEMORYUNCORRECTABLEERROR': "MemoryUncorrectableError", 'MEMORYTEMPERATUREWARNING': "MemoryTemperatureWarning", 'MEMORYTEMPERATURECRITICAL': "MemoryTemperatureCritical", + 'MEMORYBANKERROR': "MemoryBankError", + 'MEMORYRANKERROR': "MemoryRankError", 'MOTHERBOARDPOWERCRITICAL': "MotherBoardPowerCritical", 'MOTHERBOARDTEMPERATUREWARNING': "MotherBoardTemperatureWarning", 'MOTHERBOARDTEMPERATURECRITICAL': "MotherBoardTemperatureCritical", @@ -140,6 +142,8 @@ class ProcessorUnitRelationship(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", @@ -156,6 +160,7 @@ class ProcessorUnitRelationship(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", @@ -204,9 +209,12 @@ class ProcessorUnitRelationship(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", @@ -270,10 +278,6 @@ class ProcessorUnitRelationship(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", @@ -282,6 +286,7 @@ class ProcessorUnitRelationship(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", @@ -530,6 +535,7 @@ class ProcessorUnitRelationship(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", @@ -699,6 +705,11 @@ class ProcessorUnitRelationship(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", @@ -814,6 +825,7 @@ class ProcessorUnitRelationship(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", @@ -845,6 +857,7 @@ class ProcessorUnitRelationship(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", @@ -877,12 +890,14 @@ class ProcessorUnitRelationship(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/processor_unit_response.py b/intersight/model/processor_unit_response.py index 7c69f64f65..21441c41ae 100644 --- a/intersight/model/processor_unit_response.py +++ b/intersight/model/processor_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/recommendation_abstract_item.py b/intersight/model/recommendation_abstract_item.py index 1b71116228..2b8301600e 100644 --- a/intersight/model/recommendation_abstract_item.py +++ b/intersight/model/recommendation_abstract_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/recommendation_abstract_item_all_of.py b/intersight/model/recommendation_abstract_item_all_of.py index 155eb281a1..71bd579e49 100644 --- a/intersight/model/recommendation_abstract_item_all_of.py +++ b/intersight/model/recommendation_abstract_item_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/recommendation_base.py b/intersight/model/recommendation_base.py index 52aa9ba8be..b5b5bbd4ae 100644 --- a/intersight/model/recommendation_base.py +++ b/intersight/model/recommendation_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/recommendation_base_all_of.py b/intersight/model/recommendation_base_all_of.py index d7c4dc0903..b5d29597ce 100644 --- a/intersight/model/recommendation_base_all_of.py +++ b/intersight/model/recommendation_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/recommendation_capacity_runway.py b/intersight/model/recommendation_capacity_runway.py index 4d390cf910..384f6a5a7c 100644 --- a/intersight/model/recommendation_capacity_runway.py +++ b/intersight/model/recommendation_capacity_runway.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/recommendation_capacity_runway_all_of.py b/intersight/model/recommendation_capacity_runway_all_of.py index 096ac6eb9d..9452ab6bd5 100644 --- a/intersight/model/recommendation_capacity_runway_all_of.py +++ b/intersight/model/recommendation_capacity_runway_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/recommendation_capacity_runway_list.py b/intersight/model/recommendation_capacity_runway_list.py index caf8ad7fa1..7e0749325f 100644 --- a/intersight/model/recommendation_capacity_runway_list.py +++ b/intersight/model/recommendation_capacity_runway_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/recommendation_capacity_runway_list_all_of.py b/intersight/model/recommendation_capacity_runway_list_all_of.py index a21c3c2ee7..1d054e1379 100644 --- a/intersight/model/recommendation_capacity_runway_list_all_of.py +++ b/intersight/model/recommendation_capacity_runway_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/recommendation_capacity_runway_relationship.py b/intersight/model/recommendation_capacity_runway_relationship.py index c8ee27860a..3cd3112af2 100644 --- a/intersight/model/recommendation_capacity_runway_relationship.py +++ b/intersight/model/recommendation_capacity_runway_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 RecommendationCapacityRunwayRelationship(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 RecommendationCapacityRunwayRelationship(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 RecommendationCapacityRunwayRelationship(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 RecommendationCapacityRunwayRelationship(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 RecommendationCapacityRunwayRelationship(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 RecommendationCapacityRunwayRelationship(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 RecommendationCapacityRunwayRelationship(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 RecommendationCapacityRunwayRelationship(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 RecommendationCapacityRunwayRelationship(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 RecommendationCapacityRunwayRelationship(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/recommendation_capacity_runway_response.py b/intersight/model/recommendation_capacity_runway_response.py index 48ca78d538..007c7f450f 100644 --- a/intersight/model/recommendation_capacity_runway_response.py +++ b/intersight/model/recommendation_capacity_runway_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/recommendation_physical_item.py b/intersight/model/recommendation_physical_item.py index 1275f1b0f9..6480ef136d 100644 --- a/intersight/model/recommendation_physical_item.py +++ b/intersight/model/recommendation_physical_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/recommendation_physical_item_all_of.py b/intersight/model/recommendation_physical_item_all_of.py index e7206c6eab..d99b5c2982 100644 --- a/intersight/model/recommendation_physical_item_all_of.py +++ b/intersight/model/recommendation_physical_item_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/recommendation_physical_item_list.py b/intersight/model/recommendation_physical_item_list.py index 7c3d7bcbf1..74100b254e 100644 --- a/intersight/model/recommendation_physical_item_list.py +++ b/intersight/model/recommendation_physical_item_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/recommendation_physical_item_list_all_of.py b/intersight/model/recommendation_physical_item_list_all_of.py index 963fae9d66..10851d233f 100644 --- a/intersight/model/recommendation_physical_item_list_all_of.py +++ b/intersight/model/recommendation_physical_item_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/recommendation_physical_item_relationship.py b/intersight/model/recommendation_physical_item_relationship.py index f5318949b7..d705084406 100644 --- a/intersight/model/recommendation_physical_item_relationship.py +++ b/intersight/model/recommendation_physical_item_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 RecommendationPhysicalItemRelationship(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 RecommendationPhysicalItemRelationship(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 RecommendationPhysicalItemRelationship(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 RecommendationPhysicalItemRelationship(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 RecommendationPhysicalItemRelationship(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 RecommendationPhysicalItemRelationship(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 RecommendationPhysicalItemRelationship(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 RecommendationPhysicalItemRelationship(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 RecommendationPhysicalItemRelationship(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 RecommendationPhysicalItemRelationship(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/recommendation_physical_item_response.py b/intersight/model/recommendation_physical_item_response.py index e875ca1261..ab267b84fc 100644 --- a/intersight/model/recommendation_physical_item_response.py +++ b/intersight/model/recommendation_physical_item_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/recovery_abstract_backup_config.py b/intersight/model/recovery_abstract_backup_config.py index 740238177b..a1ce00f958 100644 --- a/intersight/model/recovery_abstract_backup_config.py +++ b/intersight/model/recovery_abstract_backup_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/recovery_abstract_backup_config_all_of.py b/intersight/model/recovery_abstract_backup_config_all_of.py index 1d684d08f9..6cf941fa00 100644 --- a/intersight/model/recovery_abstract_backup_config_all_of.py +++ b/intersight/model/recovery_abstract_backup_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/recovery_abstract_backup_info.py b/intersight/model/recovery_abstract_backup_info.py index 3a1acfc98d..fffbcdd0e3 100644 --- a/intersight/model/recovery_abstract_backup_info.py +++ b/intersight/model/recovery_abstract_backup_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/recovery_abstract_backup_info_all_of.py b/intersight/model/recovery_abstract_backup_info_all_of.py index a249b950c6..204352a203 100644 --- a/intersight/model/recovery_abstract_backup_info_all_of.py +++ b/intersight/model/recovery_abstract_backup_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/recovery_abstract_backup_info_relationship.py b/intersight/model/recovery_abstract_backup_info_relationship.py index bc51999939..f86374d5e9 100644 --- a/intersight/model/recovery_abstract_backup_info_relationship.py +++ b/intersight/model/recovery_abstract_backup_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 """ @@ -74,6 +74,8 @@ class RecoveryAbstractBackupInfoRelationship(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 RecoveryAbstractBackupInfoRelationship(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 RecoveryAbstractBackupInfoRelationship(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 RecoveryAbstractBackupInfoRelationship(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 RecoveryAbstractBackupInfoRelationship(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 RecoveryAbstractBackupInfoRelationship(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 RecoveryAbstractBackupInfoRelationship(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 RecoveryAbstractBackupInfoRelationship(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 RecoveryAbstractBackupInfoRelationship(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 RecoveryAbstractBackupInfoRelationship(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/recovery_backup_config_policy.py b/intersight/model/recovery_backup_config_policy.py index 72fd19d4cf..7eeac7bdc4 100644 --- a/intersight/model/recovery_backup_config_policy.py +++ b/intersight/model/recovery_backup_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/recovery_backup_config_policy_all_of.py b/intersight/model/recovery_backup_config_policy_all_of.py index 8993d9df42..dcdcfee931 100644 --- a/intersight/model/recovery_backup_config_policy_all_of.py +++ b/intersight/model/recovery_backup_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/recovery_backup_config_policy_list.py b/intersight/model/recovery_backup_config_policy_list.py index 702e24965a..c6cbd213c5 100644 --- a/intersight/model/recovery_backup_config_policy_list.py +++ b/intersight/model/recovery_backup_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/recovery_backup_config_policy_list_all_of.py b/intersight/model/recovery_backup_config_policy_list_all_of.py index 3a5837ecee..ebc2714e5b 100644 --- a/intersight/model/recovery_backup_config_policy_list_all_of.py +++ b/intersight/model/recovery_backup_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/recovery_backup_config_policy_relationship.py b/intersight/model/recovery_backup_config_policy_relationship.py index 6a4910801b..2e6d272c2f 100644 --- a/intersight/model/recovery_backup_config_policy_relationship.py +++ b/intersight/model/recovery_backup_config_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 """ @@ -85,6 +85,8 @@ class RecoveryBackupConfigPolicyRelationship(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 RecoveryBackupConfigPolicyRelationship(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 RecoveryBackupConfigPolicyRelationship(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 RecoveryBackupConfigPolicyRelationship(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 RecoveryBackupConfigPolicyRelationship(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 RecoveryBackupConfigPolicyRelationship(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 RecoveryBackupConfigPolicyRelationship(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 RecoveryBackupConfigPolicyRelationship(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 RecoveryBackupConfigPolicyRelationship(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 RecoveryBackupConfigPolicyRelationship(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/recovery_backup_config_policy_response.py b/intersight/model/recovery_backup_config_policy_response.py index 048fd4e65b..9639a181b6 100644 --- a/intersight/model/recovery_backup_config_policy_response.py +++ b/intersight/model/recovery_backup_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/recovery_backup_profile.py b/intersight/model/recovery_backup_profile.py index c742ddfa6d..dbabb17716 100644 --- a/intersight/model/recovery_backup_profile.py +++ b/intersight/model/recovery_backup_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/recovery_backup_profile_all_of.py b/intersight/model/recovery_backup_profile_all_of.py index 770f58fa82..19636427f6 100644 --- a/intersight/model/recovery_backup_profile_all_of.py +++ b/intersight/model/recovery_backup_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/recovery_backup_profile_list.py b/intersight/model/recovery_backup_profile_list.py index cb97b6ad46..701e939084 100644 --- a/intersight/model/recovery_backup_profile_list.py +++ b/intersight/model/recovery_backup_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/recovery_backup_profile_list_all_of.py b/intersight/model/recovery_backup_profile_list_all_of.py index a1f9c46af8..6ab5add285 100644 --- a/intersight/model/recovery_backup_profile_list_all_of.py +++ b/intersight/model/recovery_backup_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/recovery_backup_profile_relationship.py b/intersight/model/recovery_backup_profile_relationship.py index f9e2aadf17..5d958a9fad 100644 --- a/intersight/model/recovery_backup_profile_relationship.py +++ b/intersight/model/recovery_backup_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 RecoveryBackupProfileRelationship(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 RecoveryBackupProfileRelationship(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 RecoveryBackupProfileRelationship(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 RecoveryBackupProfileRelationship(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 RecoveryBackupProfileRelationship(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 RecoveryBackupProfileRelationship(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 RecoveryBackupProfileRelationship(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 RecoveryBackupProfileRelationship(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 RecoveryBackupProfileRelationship(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 RecoveryBackupProfileRelationship(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/recovery_backup_profile_response.py b/intersight/model/recovery_backup_profile_response.py index 36ccf24f9a..b26f52b328 100644 --- a/intersight/model/recovery_backup_profile_response.py +++ b/intersight/model/recovery_backup_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/recovery_backup_schedule.py b/intersight/model/recovery_backup_schedule.py index 7f87431e20..3e24fa104c 100644 --- a/intersight/model/recovery_backup_schedule.py +++ b/intersight/model/recovery_backup_schedule.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/recovery_backup_schedule_all_of.py b/intersight/model/recovery_backup_schedule_all_of.py index 14f284e5b2..9f8259dbc1 100644 --- a/intersight/model/recovery_backup_schedule_all_of.py +++ b/intersight/model/recovery_backup_schedule_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/recovery_config_params.py b/intersight/model/recovery_config_params.py index b58bddffe3..42a4b9e8ae 100644 --- a/intersight/model/recovery_config_params.py +++ b/intersight/model/recovery_config_params.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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 RecoveryConfigParams(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/recovery_config_result.py b/intersight/model/recovery_config_result.py index 838e2a1ade..06b52ad1be 100644 --- a/intersight/model/recovery_config_result.py +++ b/intersight/model/recovery_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/recovery_config_result_all_of.py b/intersight/model/recovery_config_result_all_of.py index c6b32e5d71..5f3b7d57c6 100644 --- a/intersight/model/recovery_config_result_all_of.py +++ b/intersight/model/recovery_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/recovery_config_result_entry.py b/intersight/model/recovery_config_result_entry.py index 5ab1560fe9..3612865ded 100644 --- a/intersight/model/recovery_config_result_entry.py +++ b/intersight/model/recovery_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/recovery_config_result_entry_all_of.py b/intersight/model/recovery_config_result_entry_all_of.py index a64e0e55b2..548fea6a8c 100644 --- a/intersight/model/recovery_config_result_entry_all_of.py +++ b/intersight/model/recovery_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/recovery_config_result_entry_list.py b/intersight/model/recovery_config_result_entry_list.py index d8a448ad18..9f876b1ef7 100644 --- a/intersight/model/recovery_config_result_entry_list.py +++ b/intersight/model/recovery_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/recovery_config_result_entry_list_all_of.py b/intersight/model/recovery_config_result_entry_list_all_of.py index 9636fc55fa..b3fe2be2b3 100644 --- a/intersight/model/recovery_config_result_entry_list_all_of.py +++ b/intersight/model/recovery_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/recovery_config_result_entry_relationship.py b/intersight/model/recovery_config_result_entry_relationship.py index b44e298258..f2ebedd3f4 100644 --- a/intersight/model/recovery_config_result_entry_relationship.py +++ b/intersight/model/recovery_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 RecoveryConfigResultEntryRelationship(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 RecoveryConfigResultEntryRelationship(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 RecoveryConfigResultEntryRelationship(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 RecoveryConfigResultEntryRelationship(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 RecoveryConfigResultEntryRelationship(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 RecoveryConfigResultEntryRelationship(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 RecoveryConfigResultEntryRelationship(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 RecoveryConfigResultEntryRelationship(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 RecoveryConfigResultEntryRelationship(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 RecoveryConfigResultEntryRelationship(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/recovery_config_result_entry_response.py b/intersight/model/recovery_config_result_entry_response.py index f9c13af045..1b62f813a2 100644 --- a/intersight/model/recovery_config_result_entry_response.py +++ b/intersight/model/recovery_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/recovery_config_result_list.py b/intersight/model/recovery_config_result_list.py index 7acf18598d..b04be5ff66 100644 --- a/intersight/model/recovery_config_result_list.py +++ b/intersight/model/recovery_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/recovery_config_result_list_all_of.py b/intersight/model/recovery_config_result_list_all_of.py index a69da46e5b..02b60e47d9 100644 --- a/intersight/model/recovery_config_result_list_all_of.py +++ b/intersight/model/recovery_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/recovery_config_result_relationship.py b/intersight/model/recovery_config_result_relationship.py index 34601f90ef..22c9756110 100644 --- a/intersight/model/recovery_config_result_relationship.py +++ b/intersight/model/recovery_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 RecoveryConfigResultRelationship(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 RecoveryConfigResultRelationship(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 RecoveryConfigResultRelationship(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 RecoveryConfigResultRelationship(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 RecoveryConfigResultRelationship(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 RecoveryConfigResultRelationship(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 RecoveryConfigResultRelationship(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 RecoveryConfigResultRelationship(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 RecoveryConfigResultRelationship(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 RecoveryConfigResultRelationship(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/recovery_config_result_response.py b/intersight/model/recovery_config_result_response.py index 3e8350ff48..8c2ffc5fd0 100644 --- a/intersight/model/recovery_config_result_response.py +++ b/intersight/model/recovery_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/recovery_on_demand_backup.py b/intersight/model/recovery_on_demand_backup.py index 342339749f..f4ce7b40c4 100644 --- a/intersight/model/recovery_on_demand_backup.py +++ b/intersight/model/recovery_on_demand_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/recovery_on_demand_backup_all_of.py b/intersight/model/recovery_on_demand_backup_all_of.py index 3c49d2b59d..ade679b00a 100644 --- a/intersight/model/recovery_on_demand_backup_all_of.py +++ b/intersight/model/recovery_on_demand_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/recovery_on_demand_backup_list.py b/intersight/model/recovery_on_demand_backup_list.py index 330940fba0..8a22a7e283 100644 --- a/intersight/model/recovery_on_demand_backup_list.py +++ b/intersight/model/recovery_on_demand_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/recovery_on_demand_backup_list_all_of.py b/intersight/model/recovery_on_demand_backup_list_all_of.py index 4aaa22a949..456607fec8 100644 --- a/intersight/model/recovery_on_demand_backup_list_all_of.py +++ b/intersight/model/recovery_on_demand_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/recovery_on_demand_backup_response.py b/intersight/model/recovery_on_demand_backup_response.py index 56c51c0e29..a5e27d7c85 100644 --- a/intersight/model/recovery_on_demand_backup_response.py +++ b/intersight/model/recovery_on_demand_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/recovery_restore.py b/intersight/model/recovery_restore.py index 8e0d1e98fc..a3df6efc9d 100644 --- a/intersight/model/recovery_restore.py +++ b/intersight/model/recovery_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/recovery_restore_all_of.py b/intersight/model/recovery_restore_all_of.py index 5b533fa03b..8c4c36d98c 100644 --- a/intersight/model/recovery_restore_all_of.py +++ b/intersight/model/recovery_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/recovery_restore_list.py b/intersight/model/recovery_restore_list.py index 603e5d254a..68b1dd9ac8 100644 --- a/intersight/model/recovery_restore_list.py +++ b/intersight/model/recovery_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/recovery_restore_list_all_of.py b/intersight/model/recovery_restore_list_all_of.py index 11e44b886a..732f0ab472 100644 --- a/intersight/model/recovery_restore_list_all_of.py +++ b/intersight/model/recovery_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/recovery_restore_response.py b/intersight/model/recovery_restore_response.py index 276cf8b8d9..6791e351d4 100644 --- a/intersight/model/recovery_restore_response.py +++ b/intersight/model/recovery_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/recovery_schedule_config_policy.py b/intersight/model/recovery_schedule_config_policy.py index d04718e0bf..a173b19a9c 100644 --- a/intersight/model/recovery_schedule_config_policy.py +++ b/intersight/model/recovery_schedule_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/recovery_schedule_config_policy_all_of.py b/intersight/model/recovery_schedule_config_policy_all_of.py index 152483055a..435ef05d1d 100644 --- a/intersight/model/recovery_schedule_config_policy_all_of.py +++ b/intersight/model/recovery_schedule_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/recovery_schedule_config_policy_list.py b/intersight/model/recovery_schedule_config_policy_list.py index 9c77b36403..fc9edf6d55 100644 --- a/intersight/model/recovery_schedule_config_policy_list.py +++ b/intersight/model/recovery_schedule_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/recovery_schedule_config_policy_list_all_of.py b/intersight/model/recovery_schedule_config_policy_list_all_of.py index da836a22e7..1b09a6016b 100644 --- a/intersight/model/recovery_schedule_config_policy_list_all_of.py +++ b/intersight/model/recovery_schedule_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/recovery_schedule_config_policy_relationship.py b/intersight/model/recovery_schedule_config_policy_relationship.py index c518c1546e..6f5b0ff0e7 100644 --- a/intersight/model/recovery_schedule_config_policy_relationship.py +++ b/intersight/model/recovery_schedule_config_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 RecoveryScheduleConfigPolicyRelationship(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 RecoveryScheduleConfigPolicyRelationship(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 RecoveryScheduleConfigPolicyRelationship(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 RecoveryScheduleConfigPolicyRelationship(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 RecoveryScheduleConfigPolicyRelationship(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 RecoveryScheduleConfigPolicyRelationship(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 RecoveryScheduleConfigPolicyRelationship(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 RecoveryScheduleConfigPolicyRelationship(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 RecoveryScheduleConfigPolicyRelationship(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 RecoveryScheduleConfigPolicyRelationship(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/recovery_schedule_config_policy_response.py b/intersight/model/recovery_schedule_config_policy_response.py index b9c1c2ba77..2ba4ded011 100644 --- a/intersight/model/recovery_schedule_config_policy_response.py +++ b/intersight/model/recovery_schedule_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/resource_group.py b/intersight/model/resource_group.py index 67b42d1f36..0fb787f38e 100644 --- a/intersight/model/resource_group.py +++ b/intersight/model/resource_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/resource_group_all_of.py b/intersight/model/resource_group_all_of.py index 5f5379b7cf..538c20a552 100644 --- a/intersight/model/resource_group_all_of.py +++ b/intersight/model/resource_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/resource_group_list.py b/intersight/model/resource_group_list.py index d03f88595e..506c54797f 100644 --- a/intersight/model/resource_group_list.py +++ b/intersight/model/resource_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/resource_group_list_all_of.py b/intersight/model/resource_group_list_all_of.py index a211aaff94..20e0012507 100644 --- a/intersight/model/resource_group_list_all_of.py +++ b/intersight/model/resource_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/resource_group_member.py b/intersight/model/resource_group_member.py index bf90d3df18..3b3d3773af 100644 --- a/intersight/model/resource_group_member.py +++ b/intersight/model/resource_group_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/resource_group_member_all_of.py b/intersight/model/resource_group_member_all_of.py index ac77b448cf..ec06e8475d 100644 --- a/intersight/model/resource_group_member_all_of.py +++ b/intersight/model/resource_group_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/resource_group_member_list.py b/intersight/model/resource_group_member_list.py index 68c544d321..523b9d32bb 100644 --- a/intersight/model/resource_group_member_list.py +++ b/intersight/model/resource_group_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/resource_group_member_list_all_of.py b/intersight/model/resource_group_member_list_all_of.py index f53bad3046..85bec34a71 100644 --- a/intersight/model/resource_group_member_list_all_of.py +++ b/intersight/model/resource_group_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/resource_group_member_response.py b/intersight/model/resource_group_member_response.py index 153287faa3..c2dc622c8f 100644 --- a/intersight/model/resource_group_member_response.py +++ b/intersight/model/resource_group_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/resource_group_relationship.py b/intersight/model/resource_group_relationship.py index 0594fa7957..87a669cd88 100644 --- a/intersight/model/resource_group_relationship.py +++ b/intersight/model/resource_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 """ @@ -84,6 +84,8 @@ class ResourceGroupRelationship(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 ResourceGroupRelationship(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 ResourceGroupRelationship(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 ResourceGroupRelationship(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 ResourceGroupRelationship(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 ResourceGroupRelationship(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 ResourceGroupRelationship(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 ResourceGroupRelationship(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 ResourceGroupRelationship(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 ResourceGroupRelationship(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/resource_group_response.py b/intersight/model/resource_group_response.py index 48746d9d2c..f9e103e522 100644 --- a/intersight/model/resource_group_response.py +++ b/intersight/model/resource_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/resource_license_resource_count.py b/intersight/model/resource_license_resource_count.py index 7d5b47bd5c..21c882c980 100644 --- a/intersight/model/resource_license_resource_count.py +++ b/intersight/model/resource_license_resource_count.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_license_resource_count_all_of.py b/intersight/model/resource_license_resource_count_all_of.py index 1c489531c8..ec12d254a5 100644 --- a/intersight/model/resource_license_resource_count_all_of.py +++ b/intersight/model/resource_license_resource_count_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_license_resource_count_list.py b/intersight/model/resource_license_resource_count_list.py index b588ae23fc..68a04b119f 100644 --- a/intersight/model/resource_license_resource_count_list.py +++ b/intersight/model/resource_license_resource_count_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/resource_license_resource_count_list_all_of.py b/intersight/model/resource_license_resource_count_list_all_of.py index fcee4d0502..b89aed3246 100644 --- a/intersight/model/resource_license_resource_count_list_all_of.py +++ b/intersight/model/resource_license_resource_count_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/resource_license_resource_count_response.py b/intersight/model/resource_license_resource_count_response.py index fb138011ae..bb9cc8470c 100644 --- a/intersight/model/resource_license_resource_count_response.py +++ b/intersight/model/resource_license_resource_count_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/resource_membership.py b/intersight/model/resource_membership.py index 51b45a2647..924f7bccc4 100644 --- a/intersight/model/resource_membership.py +++ b/intersight/model/resource_membership.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_membership_all_of.py b/intersight/model/resource_membership_all_of.py index f2c98019a7..28ecfd9b0c 100644 --- a/intersight/model/resource_membership_all_of.py +++ b/intersight/model/resource_membership_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_membership_holder.py b/intersight/model/resource_membership_holder.py index 92160df33e..b3692ae80e 100644 --- a/intersight/model/resource_membership_holder.py +++ b/intersight/model/resource_membership_holder.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_membership_holder_all_of.py b/intersight/model/resource_membership_holder_all_of.py index 3f0b6b118b..301b1f7571 100644 --- a/intersight/model/resource_membership_holder_all_of.py +++ b/intersight/model/resource_membership_holder_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_membership_holder_list.py b/intersight/model/resource_membership_holder_list.py index 495dcfe8e6..3f86fcfa12 100644 --- a/intersight/model/resource_membership_holder_list.py +++ b/intersight/model/resource_membership_holder_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/resource_membership_holder_list_all_of.py b/intersight/model/resource_membership_holder_list_all_of.py index ae259fc574..23a6c06c17 100644 --- a/intersight/model/resource_membership_holder_list_all_of.py +++ b/intersight/model/resource_membership_holder_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/resource_membership_holder_relationship.py b/intersight/model/resource_membership_holder_relationship.py index 6df5e24ec5..6148b53274 100644 --- a/intersight/model/resource_membership_holder_relationship.py +++ b/intersight/model/resource_membership_holder_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 ResourceMembershipHolderRelationship(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 ResourceMembershipHolderRelationship(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 ResourceMembershipHolderRelationship(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 ResourceMembershipHolderRelationship(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 ResourceMembershipHolderRelationship(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 ResourceMembershipHolderRelationship(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 ResourceMembershipHolderRelationship(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 ResourceMembershipHolderRelationship(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 ResourceMembershipHolderRelationship(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 ResourceMembershipHolderRelationship(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/resource_membership_holder_response.py b/intersight/model/resource_membership_holder_response.py index f3ad91d6a0..27203f654e 100644 --- a/intersight/model/resource_membership_holder_response.py +++ b/intersight/model/resource_membership_holder_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/resource_membership_list.py b/intersight/model/resource_membership_list.py index d9665d3b24..807c1eb071 100644 --- a/intersight/model/resource_membership_list.py +++ b/intersight/model/resource_membership_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/resource_membership_list_all_of.py b/intersight/model/resource_membership_list_all_of.py index d810bff5a9..a72ded59ed 100644 --- a/intersight/model/resource_membership_list_all_of.py +++ b/intersight/model/resource_membership_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/resource_membership_response.py b/intersight/model/resource_membership_response.py index 7202d259df..985d9d822f 100644 --- a/intersight/model/resource_membership_response.py +++ b/intersight/model/resource_membership_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/resource_per_type_combined_selector.py b/intersight/model/resource_per_type_combined_selector.py index 5aa5e0c394..188f0fae90 100644 --- a/intersight/model/resource_per_type_combined_selector.py +++ b/intersight/model/resource_per_type_combined_selector.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_per_type_combined_selector_all_of.py b/intersight/model/resource_per_type_combined_selector_all_of.py index f581462876..27c47f9b0d 100644 --- a/intersight/model/resource_per_type_combined_selector_all_of.py +++ b/intersight/model/resource_per_type_combined_selector_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_selector.py b/intersight/model/resource_selector.py index d24bb88b05..ba13e31ee9 100644 --- a/intersight/model/resource_selector.py +++ b/intersight/model/resource_selector.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_selector_all_of.py b/intersight/model/resource_selector_all_of.py index 5a56fbe8c9..6c63680363 100644 --- a/intersight/model/resource_selector_all_of.py +++ b/intersight/model/resource_selector_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_source_to_permission_resources.py b/intersight/model/resource_source_to_permission_resources.py index accc0b176b..e2042499c8 100644 --- a/intersight/model/resource_source_to_permission_resources.py +++ b/intersight/model/resource_source_to_permission_resources.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_source_to_permission_resources_all_of.py b/intersight/model/resource_source_to_permission_resources_all_of.py index b8e87e850c..94ad63e5da 100644 --- a/intersight/model/resource_source_to_permission_resources_all_of.py +++ b/intersight/model/resource_source_to_permission_resources_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_source_to_permission_resources_holder.py b/intersight/model/resource_source_to_permission_resources_holder.py index 9e237ab0e7..17477811c1 100644 --- a/intersight/model/resource_source_to_permission_resources_holder.py +++ b/intersight/model/resource_source_to_permission_resources_holder.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resource_source_to_permission_resources_holder_all_of.py b/intersight/model/resource_source_to_permission_resources_holder_all_of.py index 1b8772998a..8069a8731d 100644 --- a/intersight/model/resource_source_to_permission_resources_holder_all_of.py +++ b/intersight/model/resource_source_to_permission_resources_holder_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/resourcepool_lease.py b/intersight/model/resourcepool_lease.py new file mode 100644 index 0000000000..2bc03d74ac --- /dev/null +++ b/intersight/model/resourcepool_lease.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.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.pool_abstract_lease import PoolAbstractLease + from intersight.model.resource_selector import ResourceSelector + from intersight.model.resourcepool_lease_all_of import ResourcepoolLeaseAllOf + from intersight.model.resourcepool_lease_parameters import ResourcepoolLeaseParameters + from intersight.model.resourcepool_lease_resource_relationship import ResourcepoolLeaseResourceRelationship + from intersight.model.resourcepool_pool_member_relationship import ResourcepoolPoolMemberRelationship + from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship + from intersight.model.resourcepool_universe_relationship import ResourcepoolUniverseRelationship + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMo'] = MoBaseMo + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['PoolAbstractLease'] = PoolAbstractLease + globals()['ResourceSelector'] = ResourceSelector + globals()['ResourcepoolLeaseAllOf'] = ResourcepoolLeaseAllOf + globals()['ResourcepoolLeaseParameters'] = ResourcepoolLeaseParameters + globals()['ResourcepoolLeaseResourceRelationship'] = ResourcepoolLeaseResourceRelationship + globals()['ResourcepoolPoolMemberRelationship'] = ResourcepoolPoolMemberRelationship + globals()['ResourcepoolPoolRelationship'] = ResourcepoolPoolRelationship + globals()['ResourcepoolUniverseRelationship'] = ResourcepoolUniverseRelationship + + +class ResourcepoolLease(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',): { + 'RESOURCEPOOL.LEASE': "resourcepool.Lease", + }, + ('object_type',): { + 'RESOURCEPOOL.LEASE': "resourcepool.Lease", + }, + ('resource_type',): { + 'NONE': "None", + 'SERVER': "Server", + }, + ('allocation_type',): { + 'DYNAMIC': "dynamic", + 'STATIC': "static", + }, + } + + 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 + 'condition': ([ResourceSelector], none_type,), # noqa: E501 + 'feature': (str,), # noqa: E501 + 'lease_parameters': (ResourcepoolLeaseParameters,), # noqa: E501 + 'resource': (MoBaseMo,), # noqa: E501 + 'resource_type': (str,), # noqa: E501 + 'assigned_to_entity': (MoBaseMoRelationship,), # noqa: E501 + 'leased_resource': (ResourcepoolLeaseResourceRelationship,), # noqa: E501 + 'pool': (ResourcepoolPoolRelationship,), # noqa: E501 + 'pool_member': (ResourcepoolPoolMemberRelationship,), # noqa: E501 + 'universe': (ResourcepoolUniverseRelationship,), # 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 + 'allocation_type': (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 + 'condition': 'Condition', # noqa: E501 + 'feature': 'Feature', # noqa: E501 + 'lease_parameters': 'LeaseParameters', # noqa: E501 + 'resource': 'Resource', # noqa: E501 + 'resource_type': 'ResourceType', # noqa: E501 + 'assigned_to_entity': 'AssignedToEntity', # noqa: E501 + 'leased_resource': 'LeasedResource', # noqa: E501 + 'pool': 'Pool', # noqa: E501 + 'pool_member': 'PoolMember', # noqa: E501 + 'universe': 'Universe', # 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 + 'allocation_type': 'AllocationType', # 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 + """ResourcepoolLease - 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 "resourcepool.Lease", must be one of ["resourcepool.Lease", ] # 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 "resourcepool.Lease", must be one of ["resourcepool.Lease", ] # 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,) + condition ([ResourceSelector], none_type): [optional] # noqa: E501 + feature (str): Lease opertion applied for the feature.. [optional] # noqa: E501 + lease_parameters (ResourcepoolLeaseParameters): [optional] # noqa: E501 + resource (MoBaseMo): [optional] # noqa: E501 + resource_type (str): The type of the resource present in the pool, example 'server' its combination of RackUnit and Blade. * `None` - The resource cannot consider for Resource Pool. * `Server` - Resource Pool holds the server kind of resources, example - RackServer, Blade.. [optional] if omitted the server will use the default value of "None" # noqa: E501 + assigned_to_entity (MoBaseMoRelationship): [optional] # noqa: E501 + leased_resource (ResourcepoolLeaseResourceRelationship): [optional] # noqa: E501 + pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 + pool_member (ResourcepoolPoolMemberRelationship): [optional] # noqa: E501 + universe (ResourcepoolUniverseRelationship): [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 + allocation_type (str): Type of the lease allocation either static or dynamic (i.e via pool). * `dynamic` - Identifiers to be allocated by system. * `static` - Identifiers are assigned by the user.. [optional] if omitted the server will use the default value of "dynamic" # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.Lease") + object_type = kwargs.get('object_type', "resourcepool.Lease") + _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': [ + PoolAbstractLease, + ResourcepoolLeaseAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_lease_all_of.py b/intersight/model/resourcepool_lease_all_of.py new file mode 100644 index 0000000000..85efdfa7af --- /dev/null +++ b/intersight/model/resourcepool_lease_all_of.py @@ -0,0 +1,235 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.mo_base_mo import MoBaseMo + from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship + from intersight.model.resource_selector import ResourceSelector + from intersight.model.resourcepool_lease_parameters import ResourcepoolLeaseParameters + from intersight.model.resourcepool_lease_resource_relationship import ResourcepoolLeaseResourceRelationship + from intersight.model.resourcepool_pool_member_relationship import ResourcepoolPoolMemberRelationship + from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship + from intersight.model.resourcepool_universe_relationship import ResourcepoolUniverseRelationship + globals()['MoBaseMo'] = MoBaseMo + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['ResourceSelector'] = ResourceSelector + globals()['ResourcepoolLeaseParameters'] = ResourcepoolLeaseParameters + globals()['ResourcepoolLeaseResourceRelationship'] = ResourcepoolLeaseResourceRelationship + globals()['ResourcepoolPoolMemberRelationship'] = ResourcepoolPoolMemberRelationship + globals()['ResourcepoolPoolRelationship'] = ResourcepoolPoolRelationship + globals()['ResourcepoolUniverseRelationship'] = ResourcepoolUniverseRelationship + + +class ResourcepoolLeaseAllOf(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',): { + 'RESOURCEPOOL.LEASE': "resourcepool.Lease", + }, + ('object_type',): { + 'RESOURCEPOOL.LEASE': "resourcepool.Lease", + }, + ('resource_type',): { + 'NONE': "None", + 'SERVER': "Server", + }, + } + + 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 + 'condition': ([ResourceSelector], none_type,), # noqa: E501 + 'feature': (str,), # noqa: E501 + 'lease_parameters': (ResourcepoolLeaseParameters,), # noqa: E501 + 'resource': (MoBaseMo,), # noqa: E501 + 'resource_type': (str,), # noqa: E501 + 'assigned_to_entity': (MoBaseMoRelationship,), # noqa: E501 + 'leased_resource': (ResourcepoolLeaseResourceRelationship,), # noqa: E501 + 'pool': (ResourcepoolPoolRelationship,), # noqa: E501 + 'pool_member': (ResourcepoolPoolMemberRelationship,), # noqa: E501 + 'universe': (ResourcepoolUniverseRelationship,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'condition': 'Condition', # noqa: E501 + 'feature': 'Feature', # noqa: E501 + 'lease_parameters': 'LeaseParameters', # noqa: E501 + 'resource': 'Resource', # noqa: E501 + 'resource_type': 'ResourceType', # noqa: E501 + 'assigned_to_entity': 'AssignedToEntity', # noqa: E501 + 'leased_resource': 'LeasedResource', # noqa: E501 + 'pool': 'Pool', # noqa: E501 + 'pool_member': 'PoolMember', # noqa: E501 + 'universe': 'Universe', # 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 + """ResourcepoolLeaseAllOf - 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 "resourcepool.Lease", must be one of ["resourcepool.Lease", ] # 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 "resourcepool.Lease", must be one of ["resourcepool.Lease", ] # 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,) + condition ([ResourceSelector], none_type): [optional] # noqa: E501 + feature (str): Lease opertion applied for the feature.. [optional] # noqa: E501 + lease_parameters (ResourcepoolLeaseParameters): [optional] # noqa: E501 + resource (MoBaseMo): [optional] # noqa: E501 + resource_type (str): The type of the resource present in the pool, example 'server' its combination of RackUnit and Blade. * `None` - The resource cannot consider for Resource Pool. * `Server` - Resource Pool holds the server kind of resources, example - RackServer, Blade.. [optional] if omitted the server will use the default value of "None" # noqa: E501 + assigned_to_entity (MoBaseMoRelationship): [optional] # noqa: E501 + leased_resource (ResourcepoolLeaseResourceRelationship): [optional] # noqa: E501 + pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 + pool_member (ResourcepoolPoolMemberRelationship): [optional] # noqa: E501 + universe (ResourcepoolUniverseRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.Lease") + object_type = kwargs.get('object_type', "resourcepool.Lease") + _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/resourcepool_lease_list.py b/intersight/model/resourcepool_lease_list.py new file mode 100644 index 0000000000..74947a792a --- /dev/null +++ b/intersight/model/resourcepool_lease_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.mo_base_response import MoBaseResponse + from intersight.model.resourcepool_lease import ResourcepoolLease + from intersight.model.resourcepool_lease_list_all_of import ResourcepoolLeaseListAllOf + globals()['MoBaseResponse'] = MoBaseResponse + globals()['ResourcepoolLease'] = ResourcepoolLease + globals()['ResourcepoolLeaseListAllOf'] = ResourcepoolLeaseListAllOf + + +class ResourcepoolLeaseList(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': ([ResourcepoolLease], 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 + """ResourcepoolLeaseList - 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 'resourcepool.Lease' 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 ([ResourcepoolLease], none_type): The array of 'resourcepool.Lease' 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': [ + MoBaseResponse, + ResourcepoolLeaseListAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_lease_list_all_of.py b/intersight/model/resourcepool_lease_list_all_of.py new file mode 100644 index 0000000000..a3af21e0ff --- /dev/null +++ b/intersight/model/resourcepool_lease_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.resourcepool_lease import ResourcepoolLease + globals()['ResourcepoolLease'] = ResourcepoolLease + + +class ResourcepoolLeaseListAllOf(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': ([ResourcepoolLease], 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 + """ResourcepoolLeaseListAllOf - 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 'resourcepool.Lease' 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 ([ResourcepoolLease], none_type): The array of 'resourcepool.Lease' 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/resourcepool_lease_parameters.py b/intersight/model/resourcepool_lease_parameters.py new file mode 100644 index 0000000000..4ec0940e64 --- /dev/null +++ b/intersight/model/resourcepool_lease_parameters.py @@ -0,0 +1,1265 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.mo_base_complex_type import MoBaseComplexType + from intersight.model.resourcepool_server_lease_parameters import ResourcepoolServerLeaseParameters + globals()['MoBaseComplexType'] = MoBaseComplexType + globals()['ResourcepoolServerLeaseParameters'] = ResourcepoolServerLeaseParameters + + +class ResourcepoolLeaseParameters(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',): { + '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.HTTPHEADER': "bulk.HttpHeader", + '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", + '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.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + '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.ETHERNET': "kubernetes.Ethernet", + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + '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.OVSBOND': "kubernetes.OvsBond", + '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.IDENTITYDEFINITION': "meta.IdentityDefinition", + '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", + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + '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", + 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger", + '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.HTTPHEADER': "bulk.HttpHeader", + '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", + '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.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + '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.ETHERNET': "kubernetes.Ethernet", + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + '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.OVSBOND': "kubernetes.OvsBond", + '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.IDENTITYDEFINITION': "meta.IdentityDefinition", + '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", + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + '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", + 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger", + '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", + }, + } + + 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 + } + + @cached_property + def discriminator(): + lazy_import() + val = { + 'resourcepool.ServerLeaseParameters': ResourcepoolServerLeaseParameters, + } + if not val: + return None + return {'class_id': val} + + attribute_map = { + 'class_id': 'ClassId', # 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, class_id, object_type, *args, **kwargs): # noqa: E501 + """ResourcepoolLeaseParameters - 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: + _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,) + """ + + _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': [ + MoBaseComplexType, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_lease_relationship.py b/intersight/model/resourcepool_lease_relationship.py new file mode 100644 index 0000000000..9a3ec88086 --- /dev/null +++ b/intersight/model/resourcepool_lease_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.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.resource_selector import ResourceSelector + from intersight.model.resourcepool_lease import ResourcepoolLease + from intersight.model.resourcepool_lease_parameters import ResourcepoolLeaseParameters + from intersight.model.resourcepool_lease_resource_relationship import ResourcepoolLeaseResourceRelationship + from intersight.model.resourcepool_pool_member_relationship import ResourcepoolPoolMemberRelationship + from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship + from intersight.model.resourcepool_universe_relationship import ResourcepoolUniverseRelationship + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMo'] = MoBaseMo + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoMoRef'] = MoMoRef + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['ResourceSelector'] = ResourceSelector + globals()['ResourcepoolLease'] = ResourcepoolLease + globals()['ResourcepoolLeaseParameters'] = ResourcepoolLeaseParameters + globals()['ResourcepoolLeaseResourceRelationship'] = ResourcepoolLeaseResourceRelationship + globals()['ResourcepoolPoolMemberRelationship'] = ResourcepoolPoolMemberRelationship + globals()['ResourcepoolPoolRelationship'] = ResourcepoolPoolRelationship + globals()['ResourcepoolUniverseRelationship'] = ResourcepoolUniverseRelationship + + +class ResourcepoolLeaseRelationship(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", + }, + ('allocation_type',): { + 'DYNAMIC': "dynamic", + 'STATIC': "static", + }, + ('resource_type',): { + 'NONE': "None", + 'SERVER': "Server", + }, + ('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 + 'allocation_type': (str,), # noqa: E501 + 'condition': ([ResourceSelector], none_type,), # noqa: E501 + 'feature': (str,), # noqa: E501 + 'lease_parameters': (ResourcepoolLeaseParameters,), # noqa: E501 + 'resource': (MoBaseMo,), # noqa: E501 + 'resource_type': (str,), # noqa: E501 + 'assigned_to_entity': (MoBaseMoRelationship,), # noqa: E501 + 'leased_resource': (ResourcepoolLeaseResourceRelationship,), # noqa: E501 + 'pool': (ResourcepoolPoolRelationship,), # noqa: E501 + 'pool_member': (ResourcepoolPoolMemberRelationship,), # noqa: E501 + 'universe': (ResourcepoolUniverseRelationship,), # noqa: E501 + 'object_type': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + lazy_import() + val = { + 'mo.MoRef': MoMoRef, + 'resourcepool.Lease': ResourcepoolLease, + } + 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 + 'allocation_type': 'AllocationType', # noqa: E501 + 'condition': 'Condition', # noqa: E501 + 'feature': 'Feature', # noqa: E501 + 'lease_parameters': 'LeaseParameters', # noqa: E501 + 'resource': 'Resource', # noqa: E501 + 'resource_type': 'ResourceType', # noqa: E501 + 'assigned_to_entity': 'AssignedToEntity', # noqa: E501 + 'leased_resource': 'LeasedResource', # noqa: E501 + 'pool': 'Pool', # noqa: E501 + 'pool_member': 'PoolMember', # noqa: E501 + 'universe': 'Universe', # 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 + """ResourcepoolLeaseRelationship - 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 + allocation_type (str): Type of the lease allocation either static or dynamic (i.e via pool). * `dynamic` - Identifiers to be allocated by system. * `static` - Identifiers are assigned by the user.. [optional] if omitted the server will use the default value of "dynamic" # noqa: E501 + condition ([ResourceSelector], none_type): [optional] # noqa: E501 + feature (str): Lease opertion applied for the feature.. [optional] # noqa: E501 + lease_parameters (ResourcepoolLeaseParameters): [optional] # noqa: E501 + resource (MoBaseMo): [optional] # noqa: E501 + resource_type (str): The type of the resource present in the pool, example 'server' its combination of RackUnit and Blade. * `None` - The resource cannot consider for Resource Pool. * `Server` - Resource Pool holds the server kind of resources, example - RackServer, Blade.. [optional] if omitted the server will use the default value of "None" # noqa: E501 + assigned_to_entity (MoBaseMoRelationship): [optional] # noqa: E501 + leased_resource (ResourcepoolLeaseResourceRelationship): [optional] # noqa: E501 + pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 + pool_member (ResourcepoolPoolMemberRelationship): [optional] # noqa: E501 + universe (ResourcepoolUniverseRelationship): [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': [ + MoMoRef, + ResourcepoolLease, + none_type, + ], + } diff --git a/intersight/model/resourcepool_lease_resource.py b/intersight/model/resourcepool_lease_resource.py new file mode 100644 index 0000000000..bfd59c49b3 --- /dev/null +++ b/intersight/model/resourcepool_lease_resource.py @@ -0,0 +1,295 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.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.resourcepool_lease_resource_all_of import ResourcepoolLeaseResourceAllOf + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMo'] = MoBaseMo + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['ResourcepoolLeaseResourceAllOf'] = ResourcepoolLeaseResourceAllOf + + +class ResourcepoolLeaseResource(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',): { + 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource", + }, + ('object_type',): { + 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource", + }, + } + + 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 + 'feature': (str,), # noqa: E501 + 'resource': (MoBaseMoRelationship,), # 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 + 'feature': 'Feature', # noqa: E501 + 'resource': 'Resource', # 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 + """ResourcepoolLeaseResource - 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 "resourcepool.LeaseResource", must be one of ["resourcepool.LeaseResource", ] # 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 "resourcepool.LeaseResource", must be one of ["resourcepool.LeaseResource", ] # 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,) + feature (str): Lease opertion applied for the feature.. [optional] # noqa: E501 + resource (MoBaseMoRelationship): [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', "resourcepool.LeaseResource") + object_type = kwargs.get('object_type', "resourcepool.LeaseResource") + _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': [ + MoBaseMo, + ResourcepoolLeaseResourceAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_lease_resource_all_of.py b/intersight/model/resourcepool_lease_resource_all_of.py new file mode 100644 index 0000000000..59c5b3619a --- /dev/null +++ b/intersight/model/resourcepool_lease_resource_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, +) + +def lazy_import(): + from intersight.model.mo_base_mo_relationship import MoBaseMoRelationship + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + + +class ResourcepoolLeaseResourceAllOf(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',): { + 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource", + }, + ('object_type',): { + 'RESOURCEPOOL.LEASERESOURCE': "resourcepool.LeaseResource", + }, + } + + 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 + 'feature': (str,), # noqa: E501 + 'resource': (MoBaseMoRelationship,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'feature': 'Feature', # noqa: E501 + 'resource': 'Resource', # 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 + """ResourcepoolLeaseResourceAllOf - 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 "resourcepool.LeaseResource", must be one of ["resourcepool.LeaseResource", ] # 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 "resourcepool.LeaseResource", must be one of ["resourcepool.LeaseResource", ] # 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,) + feature (str): Lease opertion applied for the feature.. [optional] # noqa: E501 + resource (MoBaseMoRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.LeaseResource") + object_type = kwargs.get('object_type', "resourcepool.LeaseResource") + _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/resourcepool_lease_resource_list.py b/intersight/model/resourcepool_lease_resource_list.py new file mode 100644 index 0000000000..ed208655ae --- /dev/null +++ b/intersight/model/resourcepool_lease_resource_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.mo_base_response import MoBaseResponse + from intersight.model.resourcepool_lease_resource import ResourcepoolLeaseResource + from intersight.model.resourcepool_lease_resource_list_all_of import ResourcepoolLeaseResourceListAllOf + globals()['MoBaseResponse'] = MoBaseResponse + globals()['ResourcepoolLeaseResource'] = ResourcepoolLeaseResource + globals()['ResourcepoolLeaseResourceListAllOf'] = ResourcepoolLeaseResourceListAllOf + + +class ResourcepoolLeaseResourceList(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': ([ResourcepoolLeaseResource], 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 + """ResourcepoolLeaseResourceList - 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 'resourcepool.LeaseResource' 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 ([ResourcepoolLeaseResource], none_type): The array of 'resourcepool.LeaseResource' 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': [ + MoBaseResponse, + ResourcepoolLeaseResourceListAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_lease_resource_list_all_of.py b/intersight/model/resourcepool_lease_resource_list_all_of.py new file mode 100644 index 0000000000..98144e4834 --- /dev/null +++ b/intersight/model/resourcepool_lease_resource_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.resourcepool_lease_resource import ResourcepoolLeaseResource + globals()['ResourcepoolLeaseResource'] = ResourcepoolLeaseResource + + +class ResourcepoolLeaseResourceListAllOf(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': ([ResourcepoolLeaseResource], 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 + """ResourcepoolLeaseResourceListAllOf - 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 'resourcepool.LeaseResource' 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 ([ResourcepoolLeaseResource], none_type): The array of 'resourcepool.LeaseResource' 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/resourcepool_lease_resource_relationship.py b/intersight/model/resourcepool_lease_resource_relationship.py new file mode 100644 index 0000000000..47ae3305ae --- /dev/null +++ b/intersight/model/resourcepool_lease_resource_relationship.py @@ -0,0 +1,1059 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.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.resourcepool_lease_resource import ResourcepoolLeaseResource + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoMoRef'] = MoMoRef + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['ResourcepoolLeaseResource'] = ResourcepoolLeaseResource + + +class ResourcepoolLeaseResourceRelationship(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", + }, + ('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 + 'feature': (str,), # noqa: E501 + 'resource': (MoBaseMoRelationship,), # noqa: E501 + 'object_type': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + lazy_import() + val = { + 'mo.MoRef': MoMoRef, + 'resourcepool.LeaseResource': ResourcepoolLeaseResource, + } + 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 + 'feature': 'Feature', # noqa: E501 + 'resource': 'Resource', # 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 + """ResourcepoolLeaseResourceRelationship - 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 + feature (str): Lease opertion applied for the feature.. [optional] # noqa: E501 + resource (MoBaseMoRelationship): [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': [ + MoMoRef, + ResourcepoolLeaseResource, + none_type, + ], + } diff --git a/intersight/model/resourcepool_lease_resource_response.py b/intersight/model/resourcepool_lease_resource_response.py new file mode 100644 index 0000000000..9e154eb2d4 --- /dev/null +++ b/intersight/model/resourcepool_lease_resource_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.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 + from intersight.model.resourcepool_lease_resource_list import ResourcepoolLeaseResourceList + globals()['MoAggregateTransform'] = MoAggregateTransform + globals()['MoDocumentCount'] = MoDocumentCount + globals()['MoTagKeySummary'] = MoTagKeySummary + globals()['MoTagSummary'] = MoTagSummary + globals()['ResourcepoolLeaseResourceList'] = ResourcepoolLeaseResourceList + + +class ResourcepoolLeaseResourceResponse(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 = { + 'mo.AggregateTransform': MoAggregateTransform, + 'mo.DocumentCount': MoDocumentCount, + 'mo.TagSummary': MoTagSummary, + 'resourcepool.LeaseResource.List': ResourcepoolLeaseResourceList, + } + 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 + """ResourcepoolLeaseResourceResponse - 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 'resourcepool.LeaseResource' 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': [ + MoAggregateTransform, + MoDocumentCount, + MoTagSummary, + ResourcepoolLeaseResourceList, + ], + } diff --git a/intersight/model/resourcepool_lease_response.py b/intersight/model/resourcepool_lease_response.py new file mode 100644 index 0000000000..3085f4bfeb --- /dev/null +++ b/intersight/model/resourcepool_lease_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.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 + from intersight.model.resourcepool_lease_list import ResourcepoolLeaseList + globals()['MoAggregateTransform'] = MoAggregateTransform + globals()['MoDocumentCount'] = MoDocumentCount + globals()['MoTagKeySummary'] = MoTagKeySummary + globals()['MoTagSummary'] = MoTagSummary + globals()['ResourcepoolLeaseList'] = ResourcepoolLeaseList + + +class ResourcepoolLeaseResponse(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 = { + 'mo.AggregateTransform': MoAggregateTransform, + 'mo.DocumentCount': MoDocumentCount, + 'mo.TagSummary': MoTagSummary, + 'resourcepool.Lease.List': ResourcepoolLeaseList, + } + 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 + """ResourcepoolLeaseResponse - 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 'resourcepool.Lease' 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': [ + MoAggregateTransform, + MoDocumentCount, + MoTagSummary, + ResourcepoolLeaseList, + ], + } diff --git a/intersight/model/resourcepool_pool.py b/intersight/model/resourcepool_pool.py new file mode 100644 index 0000000000..b004391c54 --- /dev/null +++ b/intersight/model/resourcepool_pool.py @@ -0,0 +1,348 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.display_names import DisplayNames + 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.pool_abstract_pool import PoolAbstractPool + from intersight.model.resource_selector import ResourceSelector + from intersight.model.resourcepool_pool_all_of import ResourcepoolPoolAllOf + from intersight.model.resourcepool_resource_pool_parameters import ResourcepoolResourcePoolParameters + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship + globals()['PoolAbstractPool'] = PoolAbstractPool + globals()['ResourceSelector'] = ResourceSelector + globals()['ResourcepoolPoolAllOf'] = ResourcepoolPoolAllOf + globals()['ResourcepoolResourcePoolParameters'] = ResourcepoolResourcePoolParameters + + +class ResourcepoolPool(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',): { + 'RESOURCEPOOL.POOL': "resourcepool.Pool", + }, + ('object_type',): { + 'RESOURCEPOOL.POOL': "resourcepool.Pool", + }, + ('pool_type',): { + 'STATIC': "Static", + 'DYNAMIC': "Dynamic", + }, + ('resource_type',): { + 'NONE': "None", + 'SERVER': "Server", + }, + ('assignment_order',): { + 'SEQUENTIAL': "sequential", + 'DEFAULT': "default", + }, + } + + validations = { + ('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 + 'pool_type': (str,), # noqa: E501 + 'resource_pool_parameters': (ResourcepoolResourcePoolParameters,), # noqa: E501 + 'resource_type': (str,), # noqa: E501 + 'selectors': ([ResourceSelector], 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 + 'description': (str,), # noqa: E501 + 'name': (str,), # noqa: E501 + 'assigned': (int,), # noqa: E501 + 'assignment_order': (str,), # noqa: E501 + 'size': (int,), # 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 + 'pool_type': 'PoolType', # noqa: E501 + 'resource_pool_parameters': 'ResourcePoolParameters', # noqa: E501 + 'resource_type': 'ResourceType', # noqa: E501 + 'selectors': 'Selectors', # 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 + 'description': 'Description', # noqa: E501 + 'name': 'Name', # noqa: E501 + 'assigned': 'Assigned', # noqa: E501 + 'assignment_order': 'AssignmentOrder', # noqa: E501 + 'size': 'Size', # 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 + """ResourcepoolPool - 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 "resourcepool.Pool", must be one of ["resourcepool.Pool", ] # 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 "resourcepool.Pool", must be one of ["resourcepool.Pool", ] # 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,) + pool_type (str): The resource management type in the pool, it can be either static or dynamic. * `Static` - The resources in the pool will not be changed until user manually update it. * `Dynamic` - The resources in the pool will be updated dynamically based on the condition.. [optional] if omitted the server will use the default value of "Static" # noqa: E501 + resource_pool_parameters (ResourcepoolResourcePoolParameters): [optional] # noqa: E501 + resource_type (str): The type of the resource present in the pool, example 'server' its combination of RackUnit and Blade. * `None` - The resource cannot consider for Resource Pool. * `Server` - Resource Pool holds the server kind of resources, example - RackServer, Blade.. [optional] if omitted the server will use the default value of "None" # noqa: E501 + selectors ([ResourceSelector], none_type): [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 + description (str): Description of the policy.. [optional] # noqa: E501 + name (str): Name of the concrete policy.. [optional] # noqa: E501 + assigned (int): Number of IDs that are currently assigned.. [optional] # noqa: E501 + assignment_order (str): Assignment order decides the order in which the next identifier is allocated. * `sequential` - Identifiers are assigned in a sequential order. * `default` - Assignment order is decided by the system.. [optional] if omitted the server will use the default value of "sequential" # noqa: E501 + size (int): Total number of identifiers in this pool.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.Pool") + object_type = kwargs.get('object_type', "resourcepool.Pool") + _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': [ + PoolAbstractPool, + ResourcepoolPoolAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_pool_all_of.py b/intersight/model/resourcepool_pool_all_of.py new file mode 100644 index 0000000000..be971755bd --- /dev/null +++ b/intersight/model/resourcepool_pool_all_of.py @@ -0,0 +1,214 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.organization_organization_relationship import OrganizationOrganizationRelationship + from intersight.model.resource_selector import ResourceSelector + from intersight.model.resourcepool_resource_pool_parameters import ResourcepoolResourcePoolParameters + globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship + globals()['ResourceSelector'] = ResourceSelector + globals()['ResourcepoolResourcePoolParameters'] = ResourcepoolResourcePoolParameters + + +class ResourcepoolPoolAllOf(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',): { + 'RESOURCEPOOL.POOL': "resourcepool.Pool", + }, + ('object_type',): { + 'RESOURCEPOOL.POOL': "resourcepool.Pool", + }, + ('pool_type',): { + 'STATIC': "Static", + 'DYNAMIC': "Dynamic", + }, + ('resource_type',): { + 'NONE': "None", + 'SERVER': "Server", + }, + } + + 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 + 'pool_type': (str,), # noqa: E501 + 'resource_pool_parameters': (ResourcepoolResourcePoolParameters,), # noqa: E501 + 'resource_type': (str,), # noqa: E501 + 'selectors': ([ResourceSelector], 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 + 'pool_type': 'PoolType', # noqa: E501 + 'resource_pool_parameters': 'ResourcePoolParameters', # noqa: E501 + 'resource_type': 'ResourceType', # noqa: E501 + 'selectors': 'Selectors', # 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 + """ResourcepoolPoolAllOf - 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 "resourcepool.Pool", must be one of ["resourcepool.Pool", ] # 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 "resourcepool.Pool", must be one of ["resourcepool.Pool", ] # 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,) + pool_type (str): The resource management type in the pool, it can be either static or dynamic. * `Static` - The resources in the pool will not be changed until user manually update it. * `Dynamic` - The resources in the pool will be updated dynamically based on the condition.. [optional] if omitted the server will use the default value of "Static" # noqa: E501 + resource_pool_parameters (ResourcepoolResourcePoolParameters): [optional] # noqa: E501 + resource_type (str): The type of the resource present in the pool, example 'server' its combination of RackUnit and Blade. * `None` - The resource cannot consider for Resource Pool. * `Server` - Resource Pool holds the server kind of resources, example - RackServer, Blade.. [optional] if omitted the server will use the default value of "None" # noqa: E501 + selectors ([ResourceSelector], none_type): [optional] # noqa: E501 + organization (OrganizationOrganizationRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.Pool") + object_type = kwargs.get('object_type', "resourcepool.Pool") + _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/resourcepool_pool_list.py b/intersight/model/resourcepool_pool_list.py new file mode 100644 index 0000000000..5cecbb5812 --- /dev/null +++ b/intersight/model/resourcepool_pool_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.mo_base_response import MoBaseResponse + from intersight.model.resourcepool_pool import ResourcepoolPool + from intersight.model.resourcepool_pool_list_all_of import ResourcepoolPoolListAllOf + globals()['MoBaseResponse'] = MoBaseResponse + globals()['ResourcepoolPool'] = ResourcepoolPool + globals()['ResourcepoolPoolListAllOf'] = ResourcepoolPoolListAllOf + + +class ResourcepoolPoolList(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': ([ResourcepoolPool], 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 + """ResourcepoolPoolList - 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 'resourcepool.Pool' 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 ([ResourcepoolPool], none_type): The array of 'resourcepool.Pool' 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': [ + MoBaseResponse, + ResourcepoolPoolListAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_pool_list_all_of.py b/intersight/model/resourcepool_pool_list_all_of.py new file mode 100644 index 0000000000..76e7b00feb --- /dev/null +++ b/intersight/model/resourcepool_pool_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.resourcepool_pool import ResourcepoolPool + globals()['ResourcepoolPool'] = ResourcepoolPool + + +class ResourcepoolPoolListAllOf(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': ([ResourcepoolPool], 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 + """ResourcepoolPoolListAllOf - 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 'resourcepool.Pool' 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 ([ResourcepoolPool], none_type): The array of 'resourcepool.Pool' 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/resourcepool_pool_member.py b/intersight/model/resourcepool_pool_member.py new file mode 100644 index 0000000000..ad14d705c5 --- /dev/null +++ b/intersight/model/resourcepool_pool_member.py @@ -0,0 +1,311 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.display_names import DisplayNames + 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.pool_abstract_pool_member import PoolAbstractPoolMember + from intersight.model.resourcepool_lease_relationship import ResourcepoolLeaseRelationship + from intersight.model.resourcepool_pool_member_all_of import ResourcepoolPoolMemberAllOf + from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['PoolAbstractPoolMember'] = PoolAbstractPoolMember + globals()['ResourcepoolLeaseRelationship'] = ResourcepoolLeaseRelationship + globals()['ResourcepoolPoolMemberAllOf'] = ResourcepoolPoolMemberAllOf + globals()['ResourcepoolPoolRelationship'] = ResourcepoolPoolRelationship + + +class ResourcepoolPoolMember(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',): { + 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember", + }, + ('object_type',): { + 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember", + }, + } + + 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 + 'features': ([str], none_type,), # noqa: E501 + 'assigned_to_entity': ([MoBaseMoRelationship], none_type,), # noqa: E501 + 'peer': (ResourcepoolLeaseRelationship,), # noqa: E501 + 'pool': (ResourcepoolPoolRelationship,), # noqa: E501 + 'resource': (MoBaseMoRelationship,), # 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 + 'assigned': (bool,), # 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 + 'features': 'Features', # noqa: E501 + 'assigned_to_entity': 'AssignedToEntity', # noqa: E501 + 'peer': 'Peer', # noqa: E501 + 'pool': 'Pool', # noqa: E501 + 'resource': 'Resource', # 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 + 'assigned': 'Assigned', # 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 + """ResourcepoolPoolMember - 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 "resourcepool.PoolMember", must be one of ["resourcepool.PoolMember", ] # 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 "resourcepool.PoolMember", must be one of ["resourcepool.PoolMember", ] # 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,) + features ([str], none_type): [optional] # noqa: E501 + assigned_to_entity ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501 + peer (ResourcepoolLeaseRelationship): [optional] # noqa: E501 + pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 + resource (MoBaseMoRelationship): [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 + assigned (bool): Boolean to represent whether the ID is assigned or not.. [optional] if omitted the server will use the default value of False # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.PoolMember") + object_type = kwargs.get('object_type', "resourcepool.PoolMember") + _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': [ + PoolAbstractPoolMember, + ResourcepoolPoolMemberAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_pool_member_all_of.py b/intersight/model/resourcepool_pool_member_all_of.py new file mode 100644 index 0000000000..63509b493c --- /dev/null +++ b/intersight/model/resourcepool_pool_member_all_of.py @@ -0,0 +1,206 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.mo_base_mo_relationship import MoBaseMoRelationship + from intersight.model.resourcepool_lease_relationship import ResourcepoolLeaseRelationship + from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['ResourcepoolLeaseRelationship'] = ResourcepoolLeaseRelationship + globals()['ResourcepoolPoolRelationship'] = ResourcepoolPoolRelationship + + +class ResourcepoolPoolMemberAllOf(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',): { + 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember", + }, + ('object_type',): { + 'RESOURCEPOOL.POOLMEMBER': "resourcepool.PoolMember", + }, + } + + 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 + 'features': ([str], none_type,), # noqa: E501 + 'assigned_to_entity': ([MoBaseMoRelationship], none_type,), # noqa: E501 + 'peer': (ResourcepoolLeaseRelationship,), # noqa: E501 + 'pool': (ResourcepoolPoolRelationship,), # noqa: E501 + 'resource': (MoBaseMoRelationship,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'features': 'Features', # noqa: E501 + 'assigned_to_entity': 'AssignedToEntity', # noqa: E501 + 'peer': 'Peer', # noqa: E501 + 'pool': 'Pool', # noqa: E501 + 'resource': 'Resource', # 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 + """ResourcepoolPoolMemberAllOf - 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 "resourcepool.PoolMember", must be one of ["resourcepool.PoolMember", ] # 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 "resourcepool.PoolMember", must be one of ["resourcepool.PoolMember", ] # 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,) + features ([str], none_type): [optional] # noqa: E501 + assigned_to_entity ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501 + peer (ResourcepoolLeaseRelationship): [optional] # noqa: E501 + pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 + resource (MoBaseMoRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.PoolMember") + object_type = kwargs.get('object_type', "resourcepool.PoolMember") + _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/resourcepool_pool_member_list.py b/intersight/model/resourcepool_pool_member_list.py new file mode 100644 index 0000000000..35b10d302c --- /dev/null +++ b/intersight/model/resourcepool_pool_member_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.mo_base_response import MoBaseResponse + from intersight.model.resourcepool_pool_member import ResourcepoolPoolMember + from intersight.model.resourcepool_pool_member_list_all_of import ResourcepoolPoolMemberListAllOf + globals()['MoBaseResponse'] = MoBaseResponse + globals()['ResourcepoolPoolMember'] = ResourcepoolPoolMember + globals()['ResourcepoolPoolMemberListAllOf'] = ResourcepoolPoolMemberListAllOf + + +class ResourcepoolPoolMemberList(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': ([ResourcepoolPoolMember], 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 + """ResourcepoolPoolMemberList - 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 'resourcepool.PoolMember' 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 ([ResourcepoolPoolMember], none_type): The array of 'resourcepool.PoolMember' 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': [ + MoBaseResponse, + ResourcepoolPoolMemberListAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_pool_member_list_all_of.py b/intersight/model/resourcepool_pool_member_list_all_of.py new file mode 100644 index 0000000000..0a42243244 --- /dev/null +++ b/intersight/model/resourcepool_pool_member_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.resourcepool_pool_member import ResourcepoolPoolMember + globals()['ResourcepoolPoolMember'] = ResourcepoolPoolMember + + +class ResourcepoolPoolMemberListAllOf(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': ([ResourcepoolPoolMember], 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 + """ResourcepoolPoolMemberListAllOf - 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 'resourcepool.PoolMember' 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 ([ResourcepoolPoolMember], none_type): The array of 'resourcepool.PoolMember' 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/resourcepool_pool_member_relationship.py b/intersight/model/resourcepool_pool_member_relationship.py new file mode 100644 index 0000000000..d02d661b32 --- /dev/null +++ b/intersight/model/resourcepool_pool_member_relationship.py @@ -0,0 +1,1075 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.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.resourcepool_lease_relationship import ResourcepoolLeaseRelationship + from intersight.model.resourcepool_pool_member import ResourcepoolPoolMember + from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoMoRef'] = MoMoRef + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['ResourcepoolLeaseRelationship'] = ResourcepoolLeaseRelationship + globals()['ResourcepoolPoolMember'] = ResourcepoolPoolMember + globals()['ResourcepoolPoolRelationship'] = ResourcepoolPoolRelationship + + +class ResourcepoolPoolMemberRelationship(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", + }, + ('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 + 'assigned': (bool,), # noqa: E501 + 'features': ([str], none_type,), # noqa: E501 + 'assigned_to_entity': ([MoBaseMoRelationship], none_type,), # noqa: E501 + 'peer': (ResourcepoolLeaseRelationship,), # noqa: E501 + 'pool': (ResourcepoolPoolRelationship,), # noqa: E501 + 'resource': (MoBaseMoRelationship,), # noqa: E501 + 'object_type': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + lazy_import() + val = { + 'mo.MoRef': MoMoRef, + 'resourcepool.PoolMember': ResourcepoolPoolMember, + } + 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 + 'assigned': 'Assigned', # noqa: E501 + 'features': 'Features', # noqa: E501 + 'assigned_to_entity': 'AssignedToEntity', # noqa: E501 + 'peer': 'Peer', # noqa: E501 + 'pool': 'Pool', # noqa: E501 + 'resource': 'Resource', # 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 + """ResourcepoolPoolMemberRelationship - 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 + assigned (bool): Boolean to represent whether the ID is assigned or not.. [optional] if omitted the server will use the default value of False # noqa: E501 + features ([str], none_type): [optional] # noqa: E501 + assigned_to_entity ([MoBaseMoRelationship], none_type): An array of relationships to moBaseMo resources.. [optional] # noqa: E501 + peer (ResourcepoolLeaseRelationship): [optional] # noqa: E501 + pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 + resource (MoBaseMoRelationship): [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': [ + MoMoRef, + ResourcepoolPoolMember, + none_type, + ], + } diff --git a/intersight/model/resourcepool_pool_member_response.py b/intersight/model/resourcepool_pool_member_response.py new file mode 100644 index 0000000000..ff83180533 --- /dev/null +++ b/intersight/model/resourcepool_pool_member_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.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 + from intersight.model.resourcepool_pool_member_list import ResourcepoolPoolMemberList + globals()['MoAggregateTransform'] = MoAggregateTransform + globals()['MoDocumentCount'] = MoDocumentCount + globals()['MoTagKeySummary'] = MoTagKeySummary + globals()['MoTagSummary'] = MoTagSummary + globals()['ResourcepoolPoolMemberList'] = ResourcepoolPoolMemberList + + +class ResourcepoolPoolMemberResponse(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 = { + 'mo.AggregateTransform': MoAggregateTransform, + 'mo.DocumentCount': MoDocumentCount, + 'mo.TagSummary': MoTagSummary, + 'resourcepool.PoolMember.List': ResourcepoolPoolMemberList, + } + 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 + """ResourcepoolPoolMemberResponse - 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 'resourcepool.PoolMember' 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': [ + MoAggregateTransform, + MoDocumentCount, + MoTagSummary, + ResourcepoolPoolMemberList, + ], + } diff --git a/intersight/model/resourcepool_pool_relationship.py b/intersight/model/resourcepool_pool_relationship.py new file mode 100644 index 0000000000..5e93a47d74 --- /dev/null +++ b/intersight/model/resourcepool_pool_relationship.py @@ -0,0 +1,1112 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.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.resource_selector import ResourceSelector + from intersight.model.resourcepool_pool import ResourcepoolPool + from intersight.model.resourcepool_resource_pool_parameters import ResourcepoolResourcePoolParameters + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoMoRef'] = MoMoRef + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship + globals()['ResourceSelector'] = ResourceSelector + globals()['ResourcepoolPool'] = ResourcepoolPool + globals()['ResourcepoolResourcePoolParameters'] = ResourcepoolResourcePoolParameters + + +class ResourcepoolPoolRelationship(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", + }, + ('assignment_order',): { + 'SEQUENTIAL': "sequential", + 'DEFAULT': "default", + }, + ('pool_type',): { + 'STATIC': "Static", + 'DYNAMIC': "Dynamic", + }, + ('resource_type',): { + 'NONE': "None", + 'SERVER': "Server", + }, + ('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 = { + ('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 + '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 + 'description': (str,), # noqa: E501 + 'name': (str,), # noqa: E501 + 'assigned': (int,), # noqa: E501 + 'assignment_order': (str,), # noqa: E501 + 'size': (int,), # noqa: E501 + 'pool_type': (str,), # noqa: E501 + 'resource_pool_parameters': (ResourcepoolResourcePoolParameters,), # noqa: E501 + 'resource_type': (str,), # noqa: E501 + 'selectors': ([ResourceSelector], none_type,), # noqa: E501 + 'organization': (OrganizationOrganizationRelationship,), # noqa: E501 + 'object_type': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + lazy_import() + val = { + 'mo.MoRef': MoMoRef, + 'resourcepool.Pool': ResourcepoolPool, + } + 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 + 'description': 'Description', # noqa: E501 + 'name': 'Name', # noqa: E501 + 'assigned': 'Assigned', # noqa: E501 + 'assignment_order': 'AssignmentOrder', # noqa: E501 + 'size': 'Size', # noqa: E501 + 'pool_type': 'PoolType', # noqa: E501 + 'resource_pool_parameters': 'ResourcePoolParameters', # noqa: E501 + 'resource_type': 'ResourceType', # noqa: E501 + 'selectors': 'Selectors', # 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 + """ResourcepoolPoolRelationship - 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 + description (str): Description of the policy.. [optional] # noqa: E501 + name (str): Name of the concrete policy.. [optional] # noqa: E501 + assigned (int): Number of IDs that are currently assigned.. [optional] # noqa: E501 + assignment_order (str): Assignment order decides the order in which the next identifier is allocated. * `sequential` - Identifiers are assigned in a sequential order. * `default` - Assignment order is decided by the system.. [optional] if omitted the server will use the default value of "sequential" # noqa: E501 + size (int): Total number of identifiers in this pool.. [optional] # noqa: E501 + pool_type (str): The resource management type in the pool, it can be either static or dynamic. * `Static` - The resources in the pool will not be changed until user manually update it. * `Dynamic` - The resources in the pool will be updated dynamically based on the condition.. [optional] if omitted the server will use the default value of "Static" # noqa: E501 + resource_pool_parameters (ResourcepoolResourcePoolParameters): [optional] # noqa: E501 + resource_type (str): The type of the resource present in the pool, example 'server' its combination of RackUnit and Blade. * `None` - The resource cannot consider for Resource Pool. * `Server` - Resource Pool holds the server kind of resources, example - RackServer, Blade.. [optional] if omitted the server will use the default value of "None" # noqa: E501 + selectors ([ResourceSelector], none_type): [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': [ + MoMoRef, + ResourcepoolPool, + none_type, + ], + } diff --git a/intersight/model/resourcepool_pool_response.py b/intersight/model/resourcepool_pool_response.py new file mode 100644 index 0000000000..e3c4442002 --- /dev/null +++ b/intersight/model/resourcepool_pool_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.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 + from intersight.model.resourcepool_pool_list import ResourcepoolPoolList + globals()['MoAggregateTransform'] = MoAggregateTransform + globals()['MoDocumentCount'] = MoDocumentCount + globals()['MoTagKeySummary'] = MoTagKeySummary + globals()['MoTagSummary'] = MoTagSummary + globals()['ResourcepoolPoolList'] = ResourcepoolPoolList + + +class ResourcepoolPoolResponse(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 = { + 'mo.AggregateTransform': MoAggregateTransform, + 'mo.DocumentCount': MoDocumentCount, + 'mo.TagSummary': MoTagSummary, + 'resourcepool.Pool.List': ResourcepoolPoolList, + } + 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 + """ResourcepoolPoolResponse - 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 'resourcepool.Pool' 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': [ + MoAggregateTransform, + MoDocumentCount, + MoTagSummary, + ResourcepoolPoolList, + ], + } diff --git a/intersight/model/resourcepool_resource_pool_parameters.py b/intersight/model/resourcepool_resource_pool_parameters.py new file mode 100644 index 0000000000..9e6a38c081 --- /dev/null +++ b/intersight/model/resourcepool_resource_pool_parameters.py @@ -0,0 +1,1265 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.mo_base_complex_type import MoBaseComplexType + from intersight.model.resourcepool_server_pool_parameters import ResourcepoolServerPoolParameters + globals()['MoBaseComplexType'] = MoBaseComplexType + globals()['ResourcepoolServerPoolParameters'] = ResourcepoolServerPoolParameters + + +class ResourcepoolResourcePoolParameters(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',): { + '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.HTTPHEADER': "bulk.HttpHeader", + '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", + '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.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + '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.ETHERNET': "kubernetes.Ethernet", + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + '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.OVSBOND': "kubernetes.OvsBond", + '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.IDENTITYDEFINITION': "meta.IdentityDefinition", + '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", + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + '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", + 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger", + '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.HTTPHEADER': "bulk.HttpHeader", + '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", + '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.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + '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.ETHERNET': "kubernetes.Ethernet", + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + '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.OVSBOND': "kubernetes.OvsBond", + '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.IDENTITYDEFINITION': "meta.IdentityDefinition", + '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", + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + '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", + 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger", + '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", + }, + } + + 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 + } + + @cached_property + def discriminator(): + lazy_import() + val = { + 'resourcepool.ServerPoolParameters': ResourcepoolServerPoolParameters, + } + if not val: + return None + return {'class_id': val} + + attribute_map = { + 'class_id': 'ClassId', # 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, class_id, object_type, *args, **kwargs): # noqa: E501 + """ResourcepoolResourcePoolParameters - 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: + _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,) + """ + + _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': [ + MoBaseComplexType, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_server_lease_parameters.py b/intersight/model/resourcepool_server_lease_parameters.py new file mode 100644 index 0000000000..29824461d3 --- /dev/null +++ b/intersight/model/resourcepool_server_lease_parameters.py @@ -0,0 +1,263 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.resourcepool_lease_parameters import ResourcepoolLeaseParameters + from intersight.model.resourcepool_server_lease_parameters_all_of import ResourcepoolServerLeaseParametersAllOf + globals()['ResourcepoolLeaseParameters'] = ResourcepoolLeaseParameters + globals()['ResourcepoolServerLeaseParametersAllOf'] = ResourcepoolServerLeaseParametersAllOf + + +class ResourcepoolServerLeaseParameters(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',): { + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + }, + ('object_type',): { + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + }, + ('life_cycle_states',): { + 'None': None, + 'NONE': "None", + 'ACTIVE': "Active", + 'DECOMMISSIONED': "Decommissioned", + 'DECOMMISSIONINPROGRESS': "DecommissionInProgress", + 'RECOMMISSIONINPROGRESS': "RecommissionInProgress", + 'OPERATIONFAILED': "OperationFailed", + 'REACKINPROGRESS': "ReackInProgress", + 'REMOVEINPROGRESS': "RemoveInProgress", + 'DISCOVERED': "Discovered", + 'DISCOVERYINPROGRESS': "DiscoveryInProgress", + 'DISCOVERYFAILED': "DiscoveryFailed", + 'FIRMWAREUPGRADEINPROGRESS': "FirmwareUpgradeInProgress", + 'BLADEMIGRATIONINPROGRESS': "BladeMigrationInProgress", + 'INACTIVE': "Inactive", + 'REPLACEINPROGRESS': "ReplaceInProgress", + }, + } + + 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 + 'life_cycle_states': ([str], none_type,), # 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 + 'life_cycle_states': 'LifeCycleStates', # 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 + """ResourcepoolServerLeaseParameters - 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 "resourcepool.ServerLeaseParameters", must be one of ["resourcepool.ServerLeaseParameters", ] # 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 "resourcepool.ServerLeaseParameters", must be one of ["resourcepool.ServerLeaseParameters", ] # 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,) + life_cycle_states ([str], none_type): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.ServerLeaseParameters") + object_type = kwargs.get('object_type', "resourcepool.ServerLeaseParameters") + _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': [ + ResourcepoolLeaseParameters, + ResourcepoolServerLeaseParametersAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_server_lease_parameters_all_of.py b/intersight/model/resourcepool_server_lease_parameters_all_of.py new file mode 100644 index 0000000000..6e09f45832 --- /dev/null +++ b/intersight/model/resourcepool_server_lease_parameters_all_of.py @@ -0,0 +1,203 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 ResourcepoolServerLeaseParametersAllOf(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',): { + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + }, + ('object_type',): { + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + }, + ('life_cycle_states',): { + 'None': None, + 'NONE': "None", + 'ACTIVE': "Active", + 'DECOMMISSIONED': "Decommissioned", + 'DECOMMISSIONINPROGRESS': "DecommissionInProgress", + 'RECOMMISSIONINPROGRESS': "RecommissionInProgress", + 'OPERATIONFAILED': "OperationFailed", + 'REACKINPROGRESS': "ReackInProgress", + 'REMOVEINPROGRESS': "RemoveInProgress", + 'DISCOVERED': "Discovered", + 'DISCOVERYINPROGRESS': "DiscoveryInProgress", + 'DISCOVERYFAILED': "DiscoveryFailed", + 'FIRMWAREUPGRADEINPROGRESS': "FirmwareUpgradeInProgress", + 'BLADEMIGRATIONINPROGRESS': "BladeMigrationInProgress", + 'INACTIVE': "Inactive", + 'REPLACEINPROGRESS': "ReplaceInProgress", + }, + } + + 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 + 'life_cycle_states': ([str], none_type,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'life_cycle_states': 'LifeCycleStates', # 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 + """ResourcepoolServerLeaseParametersAllOf - 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 "resourcepool.ServerLeaseParameters", must be one of ["resourcepool.ServerLeaseParameters", ] # 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 "resourcepool.ServerLeaseParameters", must be one of ["resourcepool.ServerLeaseParameters", ] # 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,) + life_cycle_states ([str], none_type): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.ServerLeaseParameters") + object_type = kwargs.get('object_type', "resourcepool.ServerLeaseParameters") + _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/resourcepool_server_pool_parameters.py b/intersight/model/resourcepool_server_pool_parameters.py new file mode 100644 index 0000000000..7e22335ff0 --- /dev/null +++ b/intersight/model/resourcepool_server_pool_parameters.py @@ -0,0 +1,250 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.resourcepool_resource_pool_parameters import ResourcepoolResourcePoolParameters + from intersight.model.resourcepool_server_pool_parameters_all_of import ResourcepoolServerPoolParametersAllOf + globals()['ResourcepoolResourcePoolParameters'] = ResourcepoolResourcePoolParameters + globals()['ResourcepoolServerPoolParametersAllOf'] = ResourcepoolServerPoolParametersAllOf + + +class ResourcepoolServerPoolParameters(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',): { + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + }, + ('object_type',): { + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + }, + ('management_mode',): { + 'INTERSIGHTSTANDALONE': "IntersightStandalone", + 'UCSM': "UCSM", + 'INTERSIGHT': "Intersight", + }, + } + + 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 + 'management_mode': (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 + 'management_mode': 'ManagementMode', # 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 + """ResourcepoolServerPoolParameters - 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 "resourcepool.ServerPoolParameters", must be one of ["resourcepool.ServerPoolParameters", ] # 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 "resourcepool.ServerPoolParameters", must be one of ["resourcepool.ServerPoolParameters", ] # 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,) + management_mode (str): The platform for which the servers in resource pool are applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `IntersightStandalone` - Intersight Standalone mode of operation. * `UCSM` - Unified Computing System Manager mode of operation. * `Intersight` - Intersight managed mode of operation.. [optional] if omitted the server will use the default value of "IntersightStandalone" # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.ServerPoolParameters") + object_type = kwargs.get('object_type', "resourcepool.ServerPoolParameters") + _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': [ + ResourcepoolResourcePoolParameters, + ResourcepoolServerPoolParametersAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_server_pool_parameters_all_of.py b/intersight/model/resourcepool_server_pool_parameters_all_of.py new file mode 100644 index 0000000000..d42cdc2564 --- /dev/null +++ b/intersight/model/resourcepool_server_pool_parameters_all_of.py @@ -0,0 +1,190 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 ResourcepoolServerPoolParametersAllOf(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',): { + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + }, + ('object_type',): { + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + }, + ('management_mode',): { + 'INTERSIGHTSTANDALONE': "IntersightStandalone", + 'UCSM': "UCSM", + 'INTERSIGHT': "Intersight", + }, + } + + 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 + 'management_mode': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'management_mode': 'ManagementMode', # 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 + """ResourcepoolServerPoolParametersAllOf - 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 "resourcepool.ServerPoolParameters", must be one of ["resourcepool.ServerPoolParameters", ] # 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 "resourcepool.ServerPoolParameters", must be one of ["resourcepool.ServerPoolParameters", ] # 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,) + management_mode (str): The platform for which the servers in resource pool are applicable. It can either be a server that is operating in standalone mode or which is attached to a Fabric Interconnect managed by Intersight. * `IntersightStandalone` - Intersight Standalone mode of operation. * `UCSM` - Unified Computing System Manager mode of operation. * `Intersight` - Intersight managed mode of operation.. [optional] if omitted the server will use the default value of "IntersightStandalone" # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.ServerPoolParameters") + object_type = kwargs.get('object_type', "resourcepool.ServerPoolParameters") + _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/resourcepool_universe.py b/intersight/model/resourcepool_universe.py new file mode 100644 index 0000000000..a5db808915 --- /dev/null +++ b/intersight/model/resourcepool_universe.py @@ -0,0 +1,294 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.display_names import DisplayNames + from intersight.model.iam_account_relationship import IamAccountRelationship + 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.resourcepool_universe_all_of import ResourcepoolUniverseAllOf + globals()['DisplayNames'] = DisplayNames + globals()['IamAccountRelationship'] = IamAccountRelationship + globals()['MoBaseMo'] = MoBaseMo + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['ResourcepoolUniverseAllOf'] = ResourcepoolUniverseAllOf + + +class ResourcepoolUniverse(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',): { + 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe", + }, + ('object_type',): { + 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe", + }, + } + + 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 + '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 + } + + @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 + '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 + } + + 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 + """ResourcepoolUniverse - 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 "resourcepool.Universe", must be one of ["resourcepool.Universe", ] # 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 "resourcepool.Universe", must be one of ["resourcepool.Universe", ] # 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,) + 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 + """ + + class_id = kwargs.get('class_id', "resourcepool.Universe") + object_type = kwargs.get('object_type', "resourcepool.Universe") + _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': [ + MoBaseMo, + ResourcepoolUniverseAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_universe_all_of.py b/intersight/model/resourcepool_universe_all_of.py new file mode 100644 index 0000000000..5abfd32b66 --- /dev/null +++ b/intersight/model/resourcepool_universe_all_of.py @@ -0,0 +1,190 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 ResourcepoolUniverseAllOf(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',): { + 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe", + }, + ('object_type',): { + 'RESOURCEPOOL.UNIVERSE': "resourcepool.Universe", + }, + } + + 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 + 'account': (IamAccountRelationship,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # 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 + """ResourcepoolUniverseAllOf - 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 "resourcepool.Universe", must be one of ["resourcepool.Universe", ] # 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 "resourcepool.Universe", must be one of ["resourcepool.Universe", ] # 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,) + account (IamAccountRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "resourcepool.Universe") + object_type = kwargs.get('object_type', "resourcepool.Universe") + _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/resourcepool_universe_list.py b/intersight/model/resourcepool_universe_list.py new file mode 100644 index 0000000000..d02a4e6d4e --- /dev/null +++ b/intersight/model/resourcepool_universe_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.mo_base_response import MoBaseResponse + from intersight.model.resourcepool_universe import ResourcepoolUniverse + from intersight.model.resourcepool_universe_list_all_of import ResourcepoolUniverseListAllOf + globals()['MoBaseResponse'] = MoBaseResponse + globals()['ResourcepoolUniverse'] = ResourcepoolUniverse + globals()['ResourcepoolUniverseListAllOf'] = ResourcepoolUniverseListAllOf + + +class ResourcepoolUniverseList(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': ([ResourcepoolUniverse], 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 + """ResourcepoolUniverseList - 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 'resourcepool.Universe' 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 ([ResourcepoolUniverse], none_type): The array of 'resourcepool.Universe' 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': [ + MoBaseResponse, + ResourcepoolUniverseListAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/resourcepool_universe_list_all_of.py b/intersight/model/resourcepool_universe_list_all_of.py new file mode 100644 index 0000000000..0debb84262 --- /dev/null +++ b/intersight/model/resourcepool_universe_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.resourcepool_universe import ResourcepoolUniverse + globals()['ResourcepoolUniverse'] = ResourcepoolUniverse + + +class ResourcepoolUniverseListAllOf(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': ([ResourcepoolUniverse], 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 + """ResourcepoolUniverseListAllOf - 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 'resourcepool.Universe' 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 ([ResourcepoolUniverse], none_type): The array of 'resourcepool.Universe' 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/resourcepool_universe_relationship.py b/intersight/model/resourcepool_universe_relationship.py new file mode 100644 index 0000000000..d8f5cf2144 --- /dev/null +++ b/intersight/model/resourcepool_universe_relationship.py @@ -0,0 +1,1058 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.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_mo_ref import MoMoRef + from intersight.model.mo_tag import MoTag + from intersight.model.mo_version_context import MoVersionContext + from intersight.model.resourcepool_universe import ResourcepoolUniverse + globals()['DisplayNames'] = DisplayNames + globals()['IamAccountRelationship'] = IamAccountRelationship + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoMoRef'] = MoMoRef + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['ResourcepoolUniverse'] = ResourcepoolUniverse + + +class ResourcepoolUniverseRelationship(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", + }, + ('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 + 'account': (IamAccountRelationship,), # noqa: E501 + 'object_type': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + lazy_import() + val = { + 'mo.MoRef': MoMoRef, + 'resourcepool.Universe': ResourcepoolUniverse, + } + 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 + 'account': 'Account', # 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 + """ResourcepoolUniverseRelationship - 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 + account (IamAccountRelationship): [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': [ + MoMoRef, + ResourcepoolUniverse, + none_type, + ], + } diff --git a/intersight/model/resourcepool_universe_response.py b/intersight/model/resourcepool_universe_response.py new file mode 100644 index 0000000000..53dfd59904 --- /dev/null +++ b/intersight/model/resourcepool_universe_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.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 + from intersight.model.resourcepool_universe_list import ResourcepoolUniverseList + globals()['MoAggregateTransform'] = MoAggregateTransform + globals()['MoDocumentCount'] = MoDocumentCount + globals()['MoTagKeySummary'] = MoTagKeySummary + globals()['MoTagSummary'] = MoTagSummary + globals()['ResourcepoolUniverseList'] = ResourcepoolUniverseList + + +class ResourcepoolUniverseResponse(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 = { + 'mo.AggregateTransform': MoAggregateTransform, + 'mo.DocumentCount': MoDocumentCount, + 'mo.TagSummary': MoTagSummary, + 'resourcepool.Universe.List': ResourcepoolUniverseList, + } + 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 + """ResourcepoolUniverseResponse - 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 'resourcepool.Universe' 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': [ + MoAggregateTransform, + MoDocumentCount, + MoTagSummary, + ResourcepoolUniverseList, + ], + } diff --git a/intersight/model/rproxy_reverse_proxy.py b/intersight/model/rproxy_reverse_proxy.py index e0baebc2f6..7a0050957b 100644 --- a/intersight/model/rproxy_reverse_proxy.py +++ b/intersight/model/rproxy_reverse_proxy.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/rproxy_reverse_proxy_all_of.py b/intersight/model/rproxy_reverse_proxy_all_of.py index 017839083c..9580f18435 100644 --- a/intersight/model/rproxy_reverse_proxy_all_of.py +++ b/intersight/model/rproxy_reverse_proxy_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdcard_diagnostics.py b/intersight/model/sdcard_diagnostics.py index b56fda4e75..d79c07b744 100644 --- a/intersight/model/sdcard_diagnostics.py +++ b/intersight/model/sdcard_diagnostics.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdcard_drivers.py b/intersight/model/sdcard_drivers.py index 22e2a10391..2197cf3754 100644 --- a/intersight/model/sdcard_drivers.py +++ b/intersight/model/sdcard_drivers.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdcard_host_upgrade_utility.py b/intersight/model/sdcard_host_upgrade_utility.py index f590a50694..bc91aa8b97 100644 --- a/intersight/model/sdcard_host_upgrade_utility.py +++ b/intersight/model/sdcard_host_upgrade_utility.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdcard_operating_system.py b/intersight/model/sdcard_operating_system.py index 2ccca69c46..b7edd50211 100644 --- a/intersight/model/sdcard_operating_system.py +++ b/intersight/model/sdcard_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/sdcard_operating_system_all_of.py b/intersight/model/sdcard_operating_system_all_of.py index 3ef3a1ecc2..ddd90f4bb9 100644 --- a/intersight/model/sdcard_operating_system_all_of.py +++ b/intersight/model/sdcard_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/sdcard_partition.py b/intersight/model/sdcard_partition.py index a0f218e1bd..0c9ead16bf 100644 --- a/intersight/model/sdcard_partition.py +++ b/intersight/model/sdcard_partition.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdcard_partition_all_of.py b/intersight/model/sdcard_partition_all_of.py index fc22a32b6a..5b8950ff22 100644 --- a/intersight/model/sdcard_partition_all_of.py +++ b/intersight/model/sdcard_partition_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdcard_policy.py b/intersight/model/sdcard_policy.py index f14fc989d8..f3789e487f 100644 --- a/intersight/model/sdcard_policy.py +++ b/intersight/model/sdcard_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/sdcard_policy_all_of.py b/intersight/model/sdcard_policy_all_of.py index 21a880e7c0..66ee1118b7 100644 --- a/intersight/model/sdcard_policy_all_of.py +++ b/intersight/model/sdcard_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/sdcard_policy_list.py b/intersight/model/sdcard_policy_list.py index bd32feb126..7c7be868a6 100644 --- a/intersight/model/sdcard_policy_list.py +++ b/intersight/model/sdcard_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/sdcard_policy_list_all_of.py b/intersight/model/sdcard_policy_list_all_of.py index e93bc40e75..2962ab3be6 100644 --- a/intersight/model/sdcard_policy_list_all_of.py +++ b/intersight/model/sdcard_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/sdcard_policy_response.py b/intersight/model/sdcard_policy_response.py index 887d68b797..d2e10cd8c3 100644 --- a/intersight/model/sdcard_policy_response.py +++ b/intersight/model/sdcard_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/sdcard_server_configuration_utility.py b/intersight/model/sdcard_server_configuration_utility.py index 52201f6d47..708e897a26 100644 --- a/intersight/model/sdcard_server_configuration_utility.py +++ b/intersight/model/sdcard_server_configuration_utility.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdcard_user_partition.py b/intersight/model/sdcard_user_partition.py index f6361adef0..0939a534e2 100644 --- a/intersight/model/sdcard_user_partition.py +++ b/intersight/model/sdcard_user_partition.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdcard_user_partition_all_of.py b/intersight/model/sdcard_user_partition_all_of.py index 9217adab37..3fd73355ca 100644 --- a/intersight/model/sdcard_user_partition_all_of.py +++ b/intersight/model/sdcard_user_partition_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdcard_virtual_drive.py b/intersight/model/sdcard_virtual_drive.py index 5897fc86ca..628021e41d 100644 --- a/intersight/model/sdcard_virtual_drive.py +++ b/intersight/model/sdcard_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/sdcard_virtual_drive_all_of.py b/intersight/model/sdcard_virtual_drive_all_of.py index ea9c72b25a..ceefd4f4ef 100644 --- a/intersight/model/sdcard_virtual_drive_all_of.py +++ b/intersight/model/sdcard_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/sdwan_network_configuration_type.py b/intersight/model/sdwan_network_configuration_type.py index 796bd82990..95d82f0e72 100644 --- a/intersight/model/sdwan_network_configuration_type.py +++ b/intersight/model/sdwan_network_configuration_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/sdwan_network_configuration_type_all_of.py b/intersight/model/sdwan_network_configuration_type_all_of.py index bce03bcd2a..525a659ffc 100644 --- a/intersight/model/sdwan_network_configuration_type_all_of.py +++ b/intersight/model/sdwan_network_configuration_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/sdwan_profile.py b/intersight/model/sdwan_profile.py index 3bb49ab465..73c60370e0 100644 --- a/intersight/model/sdwan_profile.py +++ b/intersight/model/sdwan_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/sdwan_profile_all_of.py b/intersight/model/sdwan_profile_all_of.py index dc721d9dd7..aa1123a77a 100644 --- a/intersight/model/sdwan_profile_all_of.py +++ b/intersight/model/sdwan_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/sdwan_profile_list.py b/intersight/model/sdwan_profile_list.py index 73cdf0fa08..cf83839642 100644 --- a/intersight/model/sdwan_profile_list.py +++ b/intersight/model/sdwan_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/sdwan_profile_list_all_of.py b/intersight/model/sdwan_profile_list_all_of.py index 3076855e60..97ec7e0f9b 100644 --- a/intersight/model/sdwan_profile_list_all_of.py +++ b/intersight/model/sdwan_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/sdwan_profile_relationship.py b/intersight/model/sdwan_profile_relationship.py index f0aec4d0ef..bf07337e7f 100644 --- a/intersight/model/sdwan_profile_relationship.py +++ b/intersight/model/sdwan_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 """ @@ -89,6 +89,8 @@ class SdwanProfileRelationship(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 SdwanProfileRelationship(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 SdwanProfileRelationship(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 SdwanProfileRelationship(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 SdwanProfileRelationship(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 SdwanProfileRelationship(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 SdwanProfileRelationship(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 SdwanProfileRelationship(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 SdwanProfileRelationship(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 SdwanProfileRelationship(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/sdwan_profile_response.py b/intersight/model/sdwan_profile_response.py index b46b529a7b..e84cf60a86 100644 --- a/intersight/model/sdwan_profile_response.py +++ b/intersight/model/sdwan_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/sdwan_router_node.py b/intersight/model/sdwan_router_node.py index a563dff24f..a15063ed4d 100644 --- a/intersight/model/sdwan_router_node.py +++ b/intersight/model/sdwan_router_node.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdwan_router_node_all_of.py b/intersight/model/sdwan_router_node_all_of.py index defe8dec96..7d1b797eef 100644 --- a/intersight/model/sdwan_router_node_all_of.py +++ b/intersight/model/sdwan_router_node_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/sdwan_router_node_list.py b/intersight/model/sdwan_router_node_list.py index 17974ae61e..8a24edf4a2 100644 --- a/intersight/model/sdwan_router_node_list.py +++ b/intersight/model/sdwan_router_node_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/sdwan_router_node_list_all_of.py b/intersight/model/sdwan_router_node_list_all_of.py index 110eea404e..4361aa157d 100644 --- a/intersight/model/sdwan_router_node_list_all_of.py +++ b/intersight/model/sdwan_router_node_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/sdwan_router_node_relationship.py b/intersight/model/sdwan_router_node_relationship.py index 38d5eac6b1..2b3b5c3ca6 100644 --- a/intersight/model/sdwan_router_node_relationship.py +++ b/intersight/model/sdwan_router_node_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 SdwanRouterNodeRelationship(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 SdwanRouterNodeRelationship(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 SdwanRouterNodeRelationship(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 SdwanRouterNodeRelationship(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 SdwanRouterNodeRelationship(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 SdwanRouterNodeRelationship(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 SdwanRouterNodeRelationship(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 SdwanRouterNodeRelationship(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 SdwanRouterNodeRelationship(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 SdwanRouterNodeRelationship(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/sdwan_router_node_response.py b/intersight/model/sdwan_router_node_response.py index 8d8df241b7..d55bee41e0 100644 --- a/intersight/model/sdwan_router_node_response.py +++ b/intersight/model/sdwan_router_node_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/sdwan_router_policy.py b/intersight/model/sdwan_router_policy.py index dbdf883fa1..ffe5e150db 100644 --- a/intersight/model/sdwan_router_policy.py +++ b/intersight/model/sdwan_router_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/sdwan_router_policy_all_of.py b/intersight/model/sdwan_router_policy_all_of.py index 273cce4d8c..8b1d13b362 100644 --- a/intersight/model/sdwan_router_policy_all_of.py +++ b/intersight/model/sdwan_router_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/sdwan_router_policy_list.py b/intersight/model/sdwan_router_policy_list.py index a6d99d2b77..216e6199dd 100644 --- a/intersight/model/sdwan_router_policy_list.py +++ b/intersight/model/sdwan_router_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/sdwan_router_policy_list_all_of.py b/intersight/model/sdwan_router_policy_list_all_of.py index 0e4b59726b..1ab2b2e03d 100644 --- a/intersight/model/sdwan_router_policy_list_all_of.py +++ b/intersight/model/sdwan_router_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/sdwan_router_policy_relationship.py b/intersight/model/sdwan_router_policy_relationship.py index 7b4bd39c3f..0d3afd9845 100644 --- a/intersight/model/sdwan_router_policy_relationship.py +++ b/intersight/model/sdwan_router_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 SdwanRouterPolicyRelationship(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 SdwanRouterPolicyRelationship(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 SdwanRouterPolicyRelationship(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 SdwanRouterPolicyRelationship(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 SdwanRouterPolicyRelationship(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 SdwanRouterPolicyRelationship(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 SdwanRouterPolicyRelationship(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 SdwanRouterPolicyRelationship(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 SdwanRouterPolicyRelationship(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 SdwanRouterPolicyRelationship(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/sdwan_router_policy_response.py b/intersight/model/sdwan_router_policy_response.py index 764b7e4178..ae26d0dfd9 100644 --- a/intersight/model/sdwan_router_policy_response.py +++ b/intersight/model/sdwan_router_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/sdwan_template_inputs_type.py b/intersight/model/sdwan_template_inputs_type.py index 4ff12a1a07..97026b3f23 100644 --- a/intersight/model/sdwan_template_inputs_type.py +++ b/intersight/model/sdwan_template_inputs_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/sdwan_template_inputs_type_all_of.py b/intersight/model/sdwan_template_inputs_type_all_of.py index d88b2a0e25..16877a3be0 100644 --- a/intersight/model/sdwan_template_inputs_type_all_of.py +++ b/intersight/model/sdwan_template_inputs_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/sdwan_vmanage_account_policy.py b/intersight/model/sdwan_vmanage_account_policy.py index 789b5cc8fd..cc5aac4a8b 100644 --- a/intersight/model/sdwan_vmanage_account_policy.py +++ b/intersight/model/sdwan_vmanage_account_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/sdwan_vmanage_account_policy_all_of.py b/intersight/model/sdwan_vmanage_account_policy_all_of.py index f1b8d4c33e..a50a2e358f 100644 --- a/intersight/model/sdwan_vmanage_account_policy_all_of.py +++ b/intersight/model/sdwan_vmanage_account_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/sdwan_vmanage_account_policy_list.py b/intersight/model/sdwan_vmanage_account_policy_list.py index 05cc6cfdea..c18de78d24 100644 --- a/intersight/model/sdwan_vmanage_account_policy_list.py +++ b/intersight/model/sdwan_vmanage_account_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/sdwan_vmanage_account_policy_list_all_of.py b/intersight/model/sdwan_vmanage_account_policy_list_all_of.py index 6f47393dd0..0039985b1c 100644 --- a/intersight/model/sdwan_vmanage_account_policy_list_all_of.py +++ b/intersight/model/sdwan_vmanage_account_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/sdwan_vmanage_account_policy_relationship.py b/intersight/model/sdwan_vmanage_account_policy_relationship.py index fbe09f6583..de1c3c51b3 100644 --- a/intersight/model/sdwan_vmanage_account_policy_relationship.py +++ b/intersight/model/sdwan_vmanage_account_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 SdwanVmanageAccountPolicyRelationship(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 SdwanVmanageAccountPolicyRelationship(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 SdwanVmanageAccountPolicyRelationship(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 SdwanVmanageAccountPolicyRelationship(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 SdwanVmanageAccountPolicyRelationship(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 SdwanVmanageAccountPolicyRelationship(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 SdwanVmanageAccountPolicyRelationship(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 SdwanVmanageAccountPolicyRelationship(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 SdwanVmanageAccountPolicyRelationship(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 SdwanVmanageAccountPolicyRelationship(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/sdwan_vmanage_account_policy_response.py b/intersight/model/sdwan_vmanage_account_policy_response.py index a26a428fc7..fd8700d99a 100644 --- a/intersight/model/sdwan_vmanage_account_policy_response.py +++ b/intersight/model/sdwan_vmanage_account_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/search_search_item.py b/intersight/model/search_search_item.py index 61b31ee3d8..aa588e94ed 100644 --- a/intersight/model/search_search_item.py +++ b/intersight/model/search_search_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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,8 @@ class SearchSearchItem(ModelComposed): allowed_values = { ('class_id',): { 'AAA.AUDITRECORD': "aaa.AuditRecord", + 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig", + 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy", 'ACCESS.POLICY': "access.Policy", 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy", 'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface", @@ -83,6 +85,7 @@ class SearchSearchItem(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", @@ -131,9 +134,12 @@ class SearchSearchItem(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", @@ -197,10 +203,6 @@ class SearchSearchItem(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", @@ -209,6 +211,7 @@ class SearchSearchItem(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", @@ -457,6 +460,7 @@ class SearchSearchItem(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", @@ -626,6 +630,11 @@ class SearchSearchItem(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", @@ -741,6 +750,7 @@ class SearchSearchItem(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", @@ -772,6 +782,7 @@ class SearchSearchItem(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", @@ -804,15 +815,19 @@ class SearchSearchItem(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", }, ('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", @@ -829,6 +844,7 @@ class SearchSearchItem(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", @@ -877,9 +893,12 @@ class SearchSearchItem(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", @@ -943,10 +962,6 @@ class SearchSearchItem(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", @@ -955,6 +970,7 @@ class SearchSearchItem(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", @@ -1203,6 +1219,7 @@ class SearchSearchItem(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", @@ -1372,6 +1389,11 @@ class SearchSearchItem(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", @@ -1487,6 +1509,7 @@ class SearchSearchItem(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", @@ -1518,6 +1541,7 @@ class SearchSearchItem(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", @@ -1550,12 +1574,14 @@ class SearchSearchItem(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/search_search_item_list.py b/intersight/model/search_search_item_list.py index 2515b0cdba..c4f954adfe 100644 --- a/intersight/model/search_search_item_list.py +++ b/intersight/model/search_search_item_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/search_search_item_list_all_of.py b/intersight/model/search_search_item_list_all_of.py index c0f26ebd7b..c332a38251 100644 --- a/intersight/model/search_search_item_list_all_of.py +++ b/intersight/model/search_search_item_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/search_search_item_response.py b/intersight/model/search_search_item_response.py index a6683347bd..161fdef482 100644 --- a/intersight/model/search_search_item_response.py +++ b/intersight/model/search_search_item_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/search_suggest_item.py b/intersight/model/search_suggest_item.py index f26e67b1f7..0a70b93feb 100644 --- a/intersight/model/search_suggest_item.py +++ b/intersight/model/search_suggest_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/search_suggest_item_list.py b/intersight/model/search_suggest_item_list.py index 1cdb340b5d..22306b3b6b 100644 --- a/intersight/model/search_suggest_item_list.py +++ b/intersight/model/search_suggest_item_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/search_suggest_item_list_all_of.py b/intersight/model/search_suggest_item_list_all_of.py index 722ea10f1a..e5e25e2c5a 100644 --- a/intersight/model/search_suggest_item_list_all_of.py +++ b/intersight/model/search_suggest_item_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/search_suggest_item_response.py b/intersight/model/search_suggest_item_response.py index e9b52ce062..40eb958a7a 100644 --- a/intersight/model/search_suggest_item_response.py +++ b/intersight/model/search_suggest_item_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/search_tag_item.py b/intersight/model/search_tag_item.py index 922ab7202b..c049cccdea 100644 --- a/intersight/model/search_tag_item.py +++ b/intersight/model/search_tag_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/search_tag_item_all_of.py b/intersight/model/search_tag_item_all_of.py index b1db2432c9..3629ff9491 100644 --- a/intersight/model/search_tag_item_all_of.py +++ b/intersight/model/search_tag_item_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/search_tag_item_list.py b/intersight/model/search_tag_item_list.py index 44e7ee00bb..eecc6f7609 100644 --- a/intersight/model/search_tag_item_list.py +++ b/intersight/model/search_tag_item_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/search_tag_item_list_all_of.py b/intersight/model/search_tag_item_list_all_of.py index eb6568838b..58a231bd9b 100644 --- a/intersight/model/search_tag_item_list_all_of.py +++ b/intersight/model/search_tag_item_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/search_tag_item_response.py b/intersight/model/search_tag_item_response.py index e656c62cb2..c138fe321e 100644 --- a/intersight/model/search_tag_item_response.py +++ b/intersight/model/search_tag_item_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/security_unit.py b/intersight/model/security_unit.py index 49fb667266..7746589a49 100644 --- a/intersight/model/security_unit.py +++ b/intersight/model/security_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/security_unit_all_of.py b/intersight/model/security_unit_all_of.py index 15053990fa..1b587b9122 100644 --- a/intersight/model/security_unit_all_of.py +++ b/intersight/model/security_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/security_unit_list.py b/intersight/model/security_unit_list.py index e3524b5053..ec9b485fe3 100644 --- a/intersight/model/security_unit_list.py +++ b/intersight/model/security_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/security_unit_list_all_of.py b/intersight/model/security_unit_list_all_of.py index 607e7ebc21..edabdcca3a 100644 --- a/intersight/model/security_unit_list_all_of.py +++ b/intersight/model/security_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/security_unit_relationship.py b/intersight/model/security_unit_relationship.py index ed1436b835..556fdb02f0 100644 --- a/intersight/model/security_unit_relationship.py +++ b/intersight/model/security_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 """ @@ -80,6 +80,8 @@ class SecurityUnitRelationship(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 SecurityUnitRelationship(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 SecurityUnitRelationship(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 SecurityUnitRelationship(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 SecurityUnitRelationship(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 SecurityUnitRelationship(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 SecurityUnitRelationship(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 SecurityUnitRelationship(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 SecurityUnitRelationship(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 SecurityUnitRelationship(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/security_unit_response.py b/intersight/model/security_unit_response.py index c11c420e34..fb270c7ba0 100644 --- a/intersight/model/security_unit_response.py +++ b/intersight/model/security_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/server_base_profile.py b/intersight/model/server_base_profile.py index c56dc92e12..fff87d5d74 100644 --- a/intersight/model/server_base_profile.py +++ b/intersight/model/server_base_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/server_base_profile_all_of.py b/intersight/model/server_base_profile_all_of.py index a2352534dd..e310800327 100644 --- a/intersight/model/server_base_profile_all_of.py +++ b/intersight/model/server_base_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/server_config_change_detail.py b/intersight/model/server_config_change_detail.py index 398d66f412..971463b135 100644 --- a/intersight/model/server_config_change_detail.py +++ b/intersight/model/server_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/server_config_change_detail_all_of.py b/intersight/model/server_config_change_detail_all_of.py index 2804b3f5c8..ee1ef8f6f9 100644 --- a/intersight/model/server_config_change_detail_all_of.py +++ b/intersight/model/server_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/server_config_change_detail_list.py b/intersight/model/server_config_change_detail_list.py index 462596fbe2..a882e25569 100644 --- a/intersight/model/server_config_change_detail_list.py +++ b/intersight/model/server_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/server_config_change_detail_list_all_of.py b/intersight/model/server_config_change_detail_list_all_of.py index 5876401ec9..990f7393a7 100644 --- a/intersight/model/server_config_change_detail_list_all_of.py +++ b/intersight/model/server_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/server_config_change_detail_relationship.py b/intersight/model/server_config_change_detail_relationship.py index 0251645303..e4e9d08da1 100644 --- a/intersight/model/server_config_change_detail_relationship.py +++ b/intersight/model/server_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 ServerConfigChangeDetailRelationship(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 ServerConfigChangeDetailRelationship(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 ServerConfigChangeDetailRelationship(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 ServerConfigChangeDetailRelationship(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 ServerConfigChangeDetailRelationship(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 ServerConfigChangeDetailRelationship(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 ServerConfigChangeDetailRelationship(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 ServerConfigChangeDetailRelationship(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 ServerConfigChangeDetailRelationship(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 ServerConfigChangeDetailRelationship(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/server_config_change_detail_response.py b/intersight/model/server_config_change_detail_response.py index 4f955db92b..a0fa0febde 100644 --- a/intersight/model/server_config_change_detail_response.py +++ b/intersight/model/server_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/server_config_import.py b/intersight/model/server_config_import.py index f54a0f7666..cc3775d3be 100644 --- a/intersight/model/server_config_import.py +++ b/intersight/model/server_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/server_config_import_all_of.py b/intersight/model/server_config_import_all_of.py index 96b2b40967..c6822c30b5 100644 --- a/intersight/model/server_config_import_all_of.py +++ b/intersight/model/server_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/server_config_import_list.py b/intersight/model/server_config_import_list.py index 23533beba1..c3db773a93 100644 --- a/intersight/model/server_config_import_list.py +++ b/intersight/model/server_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/server_config_import_list_all_of.py b/intersight/model/server_config_import_list_all_of.py index c22b523a0d..6ce1e48774 100644 --- a/intersight/model/server_config_import_list_all_of.py +++ b/intersight/model/server_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/server_config_import_response.py b/intersight/model/server_config_import_response.py index 66a646ed08..265e1cff3d 100644 --- a/intersight/model/server_config_import_response.py +++ b/intersight/model/server_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/server_config_result.py b/intersight/model/server_config_result.py index 194e444fdc..0831479161 100644 --- a/intersight/model/server_config_result.py +++ b/intersight/model/server_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/server_config_result_all_of.py b/intersight/model/server_config_result_all_of.py index 3ad0ffac13..5190d3aedc 100644 --- a/intersight/model/server_config_result_all_of.py +++ b/intersight/model/server_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/server_config_result_entry.py b/intersight/model/server_config_result_entry.py index 6c19ec34f6..5afbfcd6be 100644 --- a/intersight/model/server_config_result_entry.py +++ b/intersight/model/server_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/server_config_result_entry_all_of.py b/intersight/model/server_config_result_entry_all_of.py index 577eeef84f..a442b2e905 100644 --- a/intersight/model/server_config_result_entry_all_of.py +++ b/intersight/model/server_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/server_config_result_entry_list.py b/intersight/model/server_config_result_entry_list.py index fd1793e4e5..ea67913ab2 100644 --- a/intersight/model/server_config_result_entry_list.py +++ b/intersight/model/server_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/server_config_result_entry_list_all_of.py b/intersight/model/server_config_result_entry_list_all_of.py index 48e31c7669..f4a66ce6f1 100644 --- a/intersight/model/server_config_result_entry_list_all_of.py +++ b/intersight/model/server_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/server_config_result_entry_relationship.py b/intersight/model/server_config_result_entry_relationship.py index 8c0e0fa401..53667886f0 100644 --- a/intersight/model/server_config_result_entry_relationship.py +++ b/intersight/model/server_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 ServerConfigResultEntryRelationship(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 ServerConfigResultEntryRelationship(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 ServerConfigResultEntryRelationship(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 ServerConfigResultEntryRelationship(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 ServerConfigResultEntryRelationship(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 ServerConfigResultEntryRelationship(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 ServerConfigResultEntryRelationship(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 ServerConfigResultEntryRelationship(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 ServerConfigResultEntryRelationship(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 ServerConfigResultEntryRelationship(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/server_config_result_entry_response.py b/intersight/model/server_config_result_entry_response.py index e128509a05..2b8b55a58b 100644 --- a/intersight/model/server_config_result_entry_response.py +++ b/intersight/model/server_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/server_config_result_list.py b/intersight/model/server_config_result_list.py index f52020c41e..96bc0fde4d 100644 --- a/intersight/model/server_config_result_list.py +++ b/intersight/model/server_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/server_config_result_list_all_of.py b/intersight/model/server_config_result_list_all_of.py index 2dd7a3843d..749da477e6 100644 --- a/intersight/model/server_config_result_list_all_of.py +++ b/intersight/model/server_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/server_config_result_relationship.py b/intersight/model/server_config_result_relationship.py index 6460245000..14173dcc7d 100644 --- a/intersight/model/server_config_result_relationship.py +++ b/intersight/model/server_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 ServerConfigResultRelationship(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 ServerConfigResultRelationship(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 ServerConfigResultRelationship(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 ServerConfigResultRelationship(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 ServerConfigResultRelationship(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 ServerConfigResultRelationship(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 ServerConfigResultRelationship(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 ServerConfigResultRelationship(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 ServerConfigResultRelationship(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 ServerConfigResultRelationship(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/server_config_result_response.py b/intersight/model/server_config_result_response.py index 23cbaa2d57..76a0eb604a 100644 --- a/intersight/model/server_config_result_response.py +++ b/intersight/model/server_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/server_pending_workflow_trigger.py b/intersight/model/server_pending_workflow_trigger.py new file mode 100644 index 0000000000..0f418c0406 --- /dev/null +++ b/intersight/model/server_pending_workflow_trigger.py @@ -0,0 +1,1261 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.mo_base_complex_type import MoBaseComplexType + globals()['MoBaseComplexType'] = MoBaseComplexType + + +class ServerPendingWorkflowTrigger(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',): { + '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.HTTPHEADER': "bulk.HttpHeader", + '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", + '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.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + '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.ETHERNET': "kubernetes.Ethernet", + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + '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.OVSBOND': "kubernetes.OvsBond", + '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.IDENTITYDEFINITION': "meta.IdentityDefinition", + '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", + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + '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", + 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger", + '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.HTTPHEADER': "bulk.HttpHeader", + '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", + '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.BAREMETALNETWORKINFO': "kubernetes.BaremetalNetworkInfo", + '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.ETHERNET': "kubernetes.Ethernet", + 'KUBERNETES.ETHERNETMATCHER': "kubernetes.EthernetMatcher", + '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.OVSBOND': "kubernetes.OvsBond", + '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.IDENTITYDEFINITION': "meta.IdentityDefinition", + '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", + 'RESOURCEPOOL.SERVERLEASEPARAMETERS': "resourcepool.ServerLeaseParameters", + 'RESOURCEPOOL.SERVERPOOLPARAMETERS': "resourcepool.ServerPoolParameters", + '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", + 'SERVER.PENDINGWORKFLOWTRIGGER': "server.PendingWorkflowTrigger", + '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", + }, + } + + 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 + } + + @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 + } + + 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, class_id, object_type, *args, **kwargs): # noqa: E501 + """ServerPendingWorkflowTrigger - 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: + _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,) + """ + + _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': [ + MoBaseComplexType, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/server_profile.py b/intersight/model/server_profile.py index a3085eb7b1..11bcc4d69b 100644 --- a/intersight/model/server_profile.py +++ b/intersight/model/server_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 """ @@ -39,6 +39,8 @@ def lazy_import(): from intersight.model.policy_config_change import PolicyConfigChange from intersight.model.policy_config_change_context import PolicyConfigChangeContext from intersight.model.policy_config_context import PolicyConfigContext + from intersight.model.resourcepool_lease_relationship import ResourcepoolLeaseRelationship + from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship from intersight.model.server_base_profile import ServerBaseProfile from intersight.model.server_config_change_detail_relationship import ServerConfigChangeDetailRelationship from intersight.model.server_config_result_relationship import ServerConfigResultRelationship @@ -55,6 +57,8 @@ def lazy_import(): globals()['PolicyConfigChange'] = PolicyConfigChange globals()['PolicyConfigChangeContext'] = PolicyConfigChangeContext globals()['PolicyConfigContext'] = PolicyConfigContext + globals()['ResourcepoolLeaseRelationship'] = ResourcepoolLeaseRelationship + globals()['ResourcepoolPoolRelationship'] = ResourcepoolPoolRelationship globals()['ServerBaseProfile'] = ServerBaseProfile globals()['ServerConfigChangeDetailRelationship'] = ServerConfigChangeDetailRelationship globals()['ServerConfigResultRelationship'] = ServerConfigResultRelationship @@ -93,6 +97,11 @@ class ServerProfile(ModelComposed): ('object_type',): { 'SERVER.PROFILE': "server.Profile", }, + ('server_assignment_mode',): { + 'NONE': "None", + 'STATIC': "Static", + 'POOL': "Pool", + }, ('type',): { 'INSTANCE': "instance", }, @@ -145,12 +154,17 @@ def openapi_types(): 'config_changes': (PolicyConfigChange,), # noqa: E501 'is_pmc_deployed_secure_passphrase_set': (bool,), # noqa: E501 'pmc_deployed_secure_passphrase': (str,), # noqa: E501 + 'server_assignment_mode': (str,), # noqa: E501 'assigned_server': (ComputePhysicalRelationship,), # noqa: E501 'associated_server': (ComputePhysicalRelationship,), # noqa: E501 + 'associated_server_pool': (ResourcepoolPoolRelationship,), # noqa: E501 'config_change_details': ([ServerConfigChangeDetailRelationship], none_type,), # noqa: E501 'config_result': (ServerConfigResultRelationship,), # noqa: E501 + 'leased_server': (ComputePhysicalRelationship,), # noqa: E501 'organization': (OrganizationOrganizationRelationship,), # noqa: E501 + 'resource_lease': (ResourcepoolLeaseRelationship,), # noqa: E501 'running_workflows': ([WorkflowWorkflowInfoRelationship], none_type,), # noqa: E501 + 'server_pool': (ResourcepoolPoolRelationship,), # noqa: E501 'account_moid': (str,), # noqa: E501 'create_time': (datetime,), # noqa: E501 'domain_group_moid': (str,), # noqa: E501 @@ -189,12 +203,17 @@ def discriminator(): 'config_changes': 'ConfigChanges', # noqa: E501 'is_pmc_deployed_secure_passphrase_set': 'IsPmcDeployedSecurePassphraseSet', # noqa: E501 'pmc_deployed_secure_passphrase': 'PmcDeployedSecurePassphrase', # noqa: E501 + 'server_assignment_mode': 'ServerAssignmentMode', # noqa: E501 'assigned_server': 'AssignedServer', # noqa: E501 'associated_server': 'AssociatedServer', # noqa: E501 + 'associated_server_pool': 'AssociatedServerPool', # noqa: E501 'config_change_details': 'ConfigChangeDetails', # noqa: E501 'config_result': 'ConfigResult', # noqa: E501 + 'leased_server': 'LeasedServer', # noqa: E501 'organization': 'Organization', # noqa: E501 + 'resource_lease': 'ResourceLease', # noqa: E501 'running_workflows': 'RunningWorkflows', # noqa: E501 + 'server_pool': 'ServerPool', # noqa: E501 'account_moid': 'AccountMoid', # noqa: E501 'create_time': 'CreateTime', # noqa: E501 'domain_group_moid': 'DomainGroupMoid', # noqa: E501 @@ -273,12 +292,17 @@ def __init__(self, *args, **kwargs): # noqa: E501 config_changes (PolicyConfigChange): [optional] # noqa: E501 is_pmc_deployed_secure_passphrase_set (bool): Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.. [optional] if omitted the server will use the default value of False # noqa: E501 pmc_deployed_secure_passphrase (str): Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.. [optional] # noqa: E501 + server_assignment_mode (str): Source of the server assigned to the server profile. Values can be Static, Pool or None. Static is used if a server is attached directly to server profile. Pool is used if a resource pool is attached to server profile. None is used if no server or resource pool is attached to server profile. * `None` - No server is assigned to the server profile. * `Static` - Server is directly assigned to server profile using assign server. * `Pool` - Server is assigned from a resource pool.. [optional] if omitted the server will use the default value of "None" # noqa: E501 assigned_server (ComputePhysicalRelationship): [optional] # noqa: E501 associated_server (ComputePhysicalRelationship): [optional] # noqa: E501 + associated_server_pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 config_change_details ([ServerConfigChangeDetailRelationship], none_type): An array of relationships to serverConfigChangeDetail resources.. [optional] # noqa: E501 config_result (ServerConfigResultRelationship): [optional] # noqa: E501 + leased_server (ComputePhysicalRelationship): [optional] # noqa: E501 organization (OrganizationOrganizationRelationship): [optional] # noqa: E501 + resource_lease (ResourcepoolLeaseRelationship): [optional] # noqa: E501 running_workflows ([WorkflowWorkflowInfoRelationship], none_type): An array of relationships to workflowWorkflowInfo resources.. [optional] # noqa: E501 + server_pool (ResourcepoolPoolRelationship): [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/server_profile_all_of.py b/intersight/model/server_profile_all_of.py index f960ce77e1..d0ff99e596 100644 --- a/intersight/model/server_profile_all_of.py +++ b/intersight/model/server_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 """ @@ -32,6 +32,8 @@ def lazy_import(): from intersight.model.organization_organization_relationship import OrganizationOrganizationRelationship from intersight.model.policy_config_change import PolicyConfigChange from intersight.model.policy_config_change_context import PolicyConfigChangeContext + from intersight.model.resourcepool_lease_relationship import ResourcepoolLeaseRelationship + from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship from intersight.model.server_config_change_detail_relationship import ServerConfigChangeDetailRelationship from intersight.model.server_config_result_relationship import ServerConfigResultRelationship from intersight.model.workflow_workflow_info_relationship import WorkflowWorkflowInfoRelationship @@ -39,6 +41,8 @@ def lazy_import(): globals()['OrganizationOrganizationRelationship'] = OrganizationOrganizationRelationship globals()['PolicyConfigChange'] = PolicyConfigChange globals()['PolicyConfigChangeContext'] = PolicyConfigChangeContext + globals()['ResourcepoolLeaseRelationship'] = ResourcepoolLeaseRelationship + globals()['ResourcepoolPoolRelationship'] = ResourcepoolPoolRelationship globals()['ServerConfigChangeDetailRelationship'] = ServerConfigChangeDetailRelationship globals()['ServerConfigResultRelationship'] = ServerConfigResultRelationship globals()['WorkflowWorkflowInfoRelationship'] = WorkflowWorkflowInfoRelationship @@ -75,6 +79,11 @@ class ServerProfileAllOf(ModelNormal): ('object_type',): { 'SERVER.PROFILE': "server.Profile", }, + ('server_assignment_mode',): { + 'NONE': "None", + 'STATIC': "Static", + 'POOL': "Pool", + }, } validations = { @@ -102,12 +111,17 @@ def openapi_types(): 'config_changes': (PolicyConfigChange,), # noqa: E501 'is_pmc_deployed_secure_passphrase_set': (bool,), # noqa: E501 'pmc_deployed_secure_passphrase': (str,), # noqa: E501 + 'server_assignment_mode': (str,), # noqa: E501 'assigned_server': (ComputePhysicalRelationship,), # noqa: E501 'associated_server': (ComputePhysicalRelationship,), # noqa: E501 + 'associated_server_pool': (ResourcepoolPoolRelationship,), # noqa: E501 'config_change_details': ([ServerConfigChangeDetailRelationship], none_type,), # noqa: E501 'config_result': (ServerConfigResultRelationship,), # noqa: E501 + 'leased_server': (ComputePhysicalRelationship,), # noqa: E501 'organization': (OrganizationOrganizationRelationship,), # noqa: E501 + 'resource_lease': (ResourcepoolLeaseRelationship,), # noqa: E501 'running_workflows': ([WorkflowWorkflowInfoRelationship], none_type,), # noqa: E501 + 'server_pool': (ResourcepoolPoolRelationship,), # noqa: E501 } @cached_property @@ -122,12 +136,17 @@ def discriminator(): 'config_changes': 'ConfigChanges', # noqa: E501 'is_pmc_deployed_secure_passphrase_set': 'IsPmcDeployedSecurePassphraseSet', # noqa: E501 'pmc_deployed_secure_passphrase': 'PmcDeployedSecurePassphrase', # noqa: E501 + 'server_assignment_mode': 'ServerAssignmentMode', # noqa: E501 'assigned_server': 'AssignedServer', # noqa: E501 'associated_server': 'AssociatedServer', # noqa: E501 + 'associated_server_pool': 'AssociatedServerPool', # noqa: E501 'config_change_details': 'ConfigChangeDetails', # noqa: E501 'config_result': 'ConfigResult', # noqa: E501 + 'leased_server': 'LeasedServer', # noqa: E501 'organization': 'Organization', # noqa: E501 + 'resource_lease': 'ResourceLease', # noqa: E501 'running_workflows': 'RunningWorkflows', # noqa: E501 + 'server_pool': 'ServerPool', # noqa: E501 } _composed_schemas = {} @@ -184,12 +203,17 @@ def __init__(self, *args, **kwargs): # noqa: E501 config_changes (PolicyConfigChange): [optional] # noqa: E501 is_pmc_deployed_secure_passphrase_set (bool): Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.. [optional] if omitted the server will use the default value of False # noqa: E501 pmc_deployed_secure_passphrase (str): Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.. [optional] # noqa: E501 + server_assignment_mode (str): Source of the server assigned to the server profile. Values can be Static, Pool or None. Static is used if a server is attached directly to server profile. Pool is used if a resource pool is attached to server profile. None is used if no server or resource pool is attached to server profile. * `None` - No server is assigned to the server profile. * `Static` - Server is directly assigned to server profile using assign server. * `Pool` - Server is assigned from a resource pool.. [optional] if omitted the server will use the default value of "None" # noqa: E501 assigned_server (ComputePhysicalRelationship): [optional] # noqa: E501 associated_server (ComputePhysicalRelationship): [optional] # noqa: E501 + associated_server_pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 config_change_details ([ServerConfigChangeDetailRelationship], none_type): An array of relationships to serverConfigChangeDetail resources.. [optional] # noqa: E501 config_result (ServerConfigResultRelationship): [optional] # noqa: E501 + leased_server (ComputePhysicalRelationship): [optional] # noqa: E501 organization (OrganizationOrganizationRelationship): [optional] # noqa: E501 + resource_lease (ResourcepoolLeaseRelationship): [optional] # noqa: E501 running_workflows ([WorkflowWorkflowInfoRelationship], none_type): An array of relationships to workflowWorkflowInfo resources.. [optional] # noqa: E501 + server_pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 """ class_id = kwargs.get('class_id', "server.Profile") diff --git a/intersight/model/server_profile_list.py b/intersight/model/server_profile_list.py index f7aaaab061..6767ec3474 100644 --- a/intersight/model/server_profile_list.py +++ b/intersight/model/server_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/server_profile_list_all_of.py b/intersight/model/server_profile_list_all_of.py index 13d16d74c6..1db9b828bc 100644 --- a/intersight/model/server_profile_list_all_of.py +++ b/intersight/model/server_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/server_profile_relationship.py b/intersight/model/server_profile_relationship.py index 24682c4b34..2ba09b0ed5 100644 --- a/intersight/model/server_profile_relationship.py +++ b/intersight/model/server_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 """ @@ -40,6 +40,8 @@ def lazy_import(): from intersight.model.policy_config_change import PolicyConfigChange from intersight.model.policy_config_change_context import PolicyConfigChangeContext from intersight.model.policy_config_context import PolicyConfigContext + from intersight.model.resourcepool_lease_relationship import ResourcepoolLeaseRelationship + from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship from intersight.model.server_config_change_detail_relationship import ServerConfigChangeDetailRelationship from intersight.model.server_config_result_relationship import ServerConfigResultRelationship from intersight.model.server_profile import ServerProfile @@ -56,6 +58,8 @@ def lazy_import(): globals()['PolicyConfigChange'] = PolicyConfigChange globals()['PolicyConfigChangeContext'] = PolicyConfigChangeContext globals()['PolicyConfigContext'] = PolicyConfigContext + globals()['ResourcepoolLeaseRelationship'] = ResourcepoolLeaseRelationship + globals()['ResourcepoolPoolRelationship'] = ResourcepoolPoolRelationship globals()['ServerConfigChangeDetailRelationship'] = ServerConfigChangeDetailRelationship globals()['ServerConfigResultRelationship'] = ServerConfigResultRelationship globals()['ServerProfile'] = ServerProfile @@ -97,8 +101,15 @@ class ServerProfileRelationship(ModelComposed): 'STANDALONE': "Standalone", 'FIATTACHED': "FIAttached", }, + ('server_assignment_mode',): { + 'NONE': "None", + 'STATIC': "Static", + 'POOL': "Pool", + }, ('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", @@ -115,6 +126,7 @@ class ServerProfileRelationship(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", @@ -163,9 +175,12 @@ class ServerProfileRelationship(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", @@ -229,10 +244,6 @@ class ServerProfileRelationship(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", @@ -241,6 +252,7 @@ class ServerProfileRelationship(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", @@ -489,6 +501,7 @@ class ServerProfileRelationship(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", @@ -658,6 +671,11 @@ class ServerProfileRelationship(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", @@ -773,6 +791,7 @@ class ServerProfileRelationship(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", @@ -804,6 +823,7 @@ class ServerProfileRelationship(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", @@ -836,12 +856,14 @@ class ServerProfileRelationship(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", }, } @@ -910,12 +932,17 @@ def openapi_types(): 'config_changes': (PolicyConfigChange,), # noqa: E501 'is_pmc_deployed_secure_passphrase_set': (bool,), # noqa: E501 'pmc_deployed_secure_passphrase': (str,), # noqa: E501 + 'server_assignment_mode': (str,), # noqa: E501 'assigned_server': (ComputePhysicalRelationship,), # noqa: E501 'associated_server': (ComputePhysicalRelationship,), # noqa: E501 + 'associated_server_pool': (ResourcepoolPoolRelationship,), # noqa: E501 'config_change_details': ([ServerConfigChangeDetailRelationship], none_type,), # noqa: E501 'config_result': (ServerConfigResultRelationship,), # noqa: E501 + 'leased_server': (ComputePhysicalRelationship,), # noqa: E501 'organization': (OrganizationOrganizationRelationship,), # noqa: E501 + 'resource_lease': (ResourcepoolLeaseRelationship,), # noqa: E501 'running_workflows': ([WorkflowWorkflowInfoRelationship], none_type,), # noqa: E501 + 'server_pool': (ResourcepoolPoolRelationship,), # noqa: E501 'object_type': (str,), # noqa: E501 } @@ -959,12 +986,17 @@ def discriminator(): 'config_changes': 'ConfigChanges', # noqa: E501 'is_pmc_deployed_secure_passphrase_set': 'IsPmcDeployedSecurePassphraseSet', # noqa: E501 'pmc_deployed_secure_passphrase': 'PmcDeployedSecurePassphrase', # noqa: E501 + 'server_assignment_mode': 'ServerAssignmentMode', # noqa: E501 'assigned_server': 'AssignedServer', # noqa: E501 'associated_server': 'AssociatedServer', # noqa: E501 + 'associated_server_pool': 'AssociatedServerPool', # noqa: E501 'config_change_details': 'ConfigChangeDetails', # noqa: E501 'config_result': 'ConfigResult', # noqa: E501 + 'leased_server': 'LeasedServer', # noqa: E501 'organization': 'Organization', # noqa: E501 + 'resource_lease': 'ResourceLease', # noqa: E501 'running_workflows': 'RunningWorkflows', # noqa: E501 + 'server_pool': 'ServerPool', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 } @@ -1045,12 +1077,17 @@ def __init__(self, *args, **kwargs): # noqa: E501 config_changes (PolicyConfigChange): [optional] # noqa: E501 is_pmc_deployed_secure_passphrase_set (bool): Indicates whether the value of the 'pmcDeployedSecurePassphrase' property has been set.. [optional] if omitted the server will use the default value of False # noqa: E501 pmc_deployed_secure_passphrase (str): Secure passphrase that is already deployed on all the Persistent Memory Modules on the server. This deployed passphrase is required during deploy of server profile if secure passphrase is changed or security is disabled in the attached persistent memory policy.. [optional] # noqa: E501 + server_assignment_mode (str): Source of the server assigned to the server profile. Values can be Static, Pool or None. Static is used if a server is attached directly to server profile. Pool is used if a resource pool is attached to server profile. None is used if no server or resource pool is attached to server profile. * `None` - No server is assigned to the server profile. * `Static` - Server is directly assigned to server profile using assign server. * `Pool` - Server is assigned from a resource pool.. [optional] if omitted the server will use the default value of "None" # noqa: E501 assigned_server (ComputePhysicalRelationship): [optional] # noqa: E501 associated_server (ComputePhysicalRelationship): [optional] # noqa: E501 + associated_server_pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 config_change_details ([ServerConfigChangeDetailRelationship], none_type): An array of relationships to serverConfigChangeDetail resources.. [optional] # noqa: E501 config_result (ServerConfigResultRelationship): [optional] # noqa: E501 + leased_server (ComputePhysicalRelationship): [optional] # noqa: E501 organization (OrganizationOrganizationRelationship): [optional] # noqa: E501 + resource_lease (ResourcepoolLeaseRelationship): [optional] # noqa: E501 running_workflows ([WorkflowWorkflowInfoRelationship], none_type): An array of relationships to workflowWorkflowInfo resources.. [optional] # noqa: E501 + server_pool (ResourcepoolPoolRelationship): [optional] # noqa: E501 object_type (str): The fully-qualified name of the remote type referred by this relationship.. [optional] # noqa: E501 """ diff --git a/intersight/model/server_profile_response.py b/intersight/model/server_profile_response.py index 03f54d5cb4..dc955d4d16 100644 --- a/intersight/model/server_profile_response.py +++ b/intersight/model/server_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/server_profile_template.py b/intersight/model/server_profile_template.py index 9a70cc1d92..110b8171cf 100644 --- a/intersight/model/server_profile_template.py +++ b/intersight/model/server_profile_template.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/server_profile_template_all_of.py b/intersight/model/server_profile_template_all_of.py index 2b7f148b66..9a87cc14cf 100644 --- a/intersight/model/server_profile_template_all_of.py +++ b/intersight/model/server_profile_template_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/server_profile_template_list.py b/intersight/model/server_profile_template_list.py index c3892b16f4..150679162c 100644 --- a/intersight/model/server_profile_template_list.py +++ b/intersight/model/server_profile_template_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/server_profile_template_list_all_of.py b/intersight/model/server_profile_template_list_all_of.py index d6fbe21020..3cc1f8f1be 100644 --- a/intersight/model/server_profile_template_list_all_of.py +++ b/intersight/model/server_profile_template_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/server_profile_template_response.py b/intersight/model/server_profile_template_response.py index bca56902e2..0490569968 100644 --- a/intersight/model/server_profile_template_response.py +++ b/intersight/model/server_profile_template_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/session_abstract_session.py b/intersight/model/session_abstract_session.py index 5dc56b5f20..c6c656be43 100644 --- a/intersight/model/session_abstract_session.py +++ b/intersight/model/session_abstract_session.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/session_abstract_session_all_of.py b/intersight/model/session_abstract_session_all_of.py index fd30c46539..59568b2ac7 100644 --- a/intersight/model/session_abstract_session_all_of.py +++ b/intersight/model/session_abstract_session_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/session_abstract_session_relationship.py b/intersight/model/session_abstract_session_relationship.py index f9193cf901..d1e639bb54 100644 --- a/intersight/model/session_abstract_session_relationship.py +++ b/intersight/model/session_abstract_session_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 """ @@ -77,6 +77,8 @@ class SessionAbstractSessionRelationship(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", @@ -93,6 +95,7 @@ class SessionAbstractSessionRelationship(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", @@ -141,9 +144,12 @@ class SessionAbstractSessionRelationship(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", @@ -207,10 +213,6 @@ class SessionAbstractSessionRelationship(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", @@ -219,6 +221,7 @@ class SessionAbstractSessionRelationship(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", @@ -467,6 +470,7 @@ class SessionAbstractSessionRelationship(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", @@ -636,6 +640,11 @@ class SessionAbstractSessionRelationship(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", @@ -751,6 +760,7 @@ class SessionAbstractSessionRelationship(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", @@ -782,6 +792,7 @@ class SessionAbstractSessionRelationship(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", @@ -814,12 +825,14 @@ class SessionAbstractSessionRelationship(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/session_abstract_sub_session.py b/intersight/model/session_abstract_sub_session.py index 03c4774b91..47cb1f9aac 100644 --- a/intersight/model/session_abstract_sub_session.py +++ b/intersight/model/session_abstract_sub_session.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/session_abstract_sub_session_all_of.py b/intersight/model/session_abstract_sub_session_all_of.py index ea4a23c79a..81e2a1953a 100644 --- a/intersight/model/session_abstract_sub_session_all_of.py +++ b/intersight/model/session_abstract_sub_session_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/smtp_policy.py b/intersight/model/smtp_policy.py index 8cdd07ce5a..7be99804ba 100644 --- a/intersight/model/smtp_policy.py +++ b/intersight/model/smtp_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/smtp_policy_all_of.py b/intersight/model/smtp_policy_all_of.py index fc8c1bc085..30fd3a3baa 100644 --- a/intersight/model/smtp_policy_all_of.py +++ b/intersight/model/smtp_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/smtp_policy_list.py b/intersight/model/smtp_policy_list.py index 87a2f55499..27466e2438 100644 --- a/intersight/model/smtp_policy_list.py +++ b/intersight/model/smtp_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/smtp_policy_list_all_of.py b/intersight/model/smtp_policy_list_all_of.py index 01c8a08f1d..deb93878a5 100644 --- a/intersight/model/smtp_policy_list_all_of.py +++ b/intersight/model/smtp_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/smtp_policy_response.py b/intersight/model/smtp_policy_response.py index 06db142fdc..bb117f6c38 100644 --- a/intersight/model/smtp_policy_response.py +++ b/intersight/model/smtp_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/snmp_policy.py b/intersight/model/snmp_policy.py index 363be50bd9..83e0c4de43 100644 --- a/intersight/model/snmp_policy.py +++ b/intersight/model/snmp_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/snmp_policy_all_of.py b/intersight/model/snmp_policy_all_of.py index 1222eecdeb..1144225bd1 100644 --- a/intersight/model/snmp_policy_all_of.py +++ b/intersight/model/snmp_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/snmp_policy_list.py b/intersight/model/snmp_policy_list.py index 220c446952..f9081b2fd9 100644 --- a/intersight/model/snmp_policy_list.py +++ b/intersight/model/snmp_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/snmp_policy_list_all_of.py b/intersight/model/snmp_policy_list_all_of.py index 92b8436ac2..4fc653e859 100644 --- a/intersight/model/snmp_policy_list_all_of.py +++ b/intersight/model/snmp_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/snmp_policy_response.py b/intersight/model/snmp_policy_response.py index b57811f89b..ae069afb9f 100644 --- a/intersight/model/snmp_policy_response.py +++ b/intersight/model/snmp_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/snmp_trap.py b/intersight/model/snmp_trap.py index 6dbdae4510..33a9a3b5e5 100644 --- a/intersight/model/snmp_trap.py +++ b/intersight/model/snmp_trap.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/snmp_trap_all_of.py b/intersight/model/snmp_trap_all_of.py index 23ee102bfc..60df1c4123 100644 --- a/intersight/model/snmp_trap_all_of.py +++ b/intersight/model/snmp_trap_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/snmp_user.py b/intersight/model/snmp_user.py index 1b6e6a0bcb..67d29e8f5c 100644 --- a/intersight/model/snmp_user.py +++ b/intersight/model/snmp_user.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/snmp_user_all_of.py b/intersight/model/snmp_user_all_of.py index 623b6fb693..2ce59fa942 100644 --- a/intersight/model/snmp_user_all_of.py +++ b/intersight/model/snmp_user_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/software_appliance_distributable.py b/intersight/model/software_appliance_distributable.py index d2a3cdc289..548aec8121 100644 --- a/intersight/model/software_appliance_distributable.py +++ b/intersight/model/software_appliance_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/software_appliance_distributable_all_of.py b/intersight/model/software_appliance_distributable_all_of.py index 821f2163b9..b1a77ee17c 100644 --- a/intersight/model/software_appliance_distributable_all_of.py +++ b/intersight/model/software_appliance_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/software_appliance_distributable_list.py b/intersight/model/software_appliance_distributable_list.py index b92c2f2c4c..9fa8808f94 100644 --- a/intersight/model/software_appliance_distributable_list.py +++ b/intersight/model/software_appliance_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/software_appliance_distributable_list_all_of.py b/intersight/model/software_appliance_distributable_list_all_of.py index 7c197a1f52..50b0e4a361 100644 --- a/intersight/model/software_appliance_distributable_list_all_of.py +++ b/intersight/model/software_appliance_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/software_appliance_distributable_response.py b/intersight/model/software_appliance_distributable_response.py index 0bf917bdc1..2e86158107 100644 --- a/intersight/model/software_appliance_distributable_response.py +++ b/intersight/model/software_appliance_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/software_download_history.py b/intersight/model/software_download_history.py index e67fcf2c09..0b8318bd7c 100644 --- a/intersight/model/software_download_history.py +++ b/intersight/model/software_download_history.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/software_download_history_all_of.py b/intersight/model/software_download_history_all_of.py index d64bdf250e..6a5e7debfc 100644 --- a/intersight/model/software_download_history_all_of.py +++ b/intersight/model/software_download_history_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/software_download_history_list.py b/intersight/model/software_download_history_list.py index 22e8297d92..6d79f1a296 100644 --- a/intersight/model/software_download_history_list.py +++ b/intersight/model/software_download_history_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/software_download_history_list_all_of.py b/intersight/model/software_download_history_list_all_of.py index 1555bb08b5..12df6eff2d 100644 --- a/intersight/model/software_download_history_list_all_of.py +++ b/intersight/model/software_download_history_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/software_download_history_response.py b/intersight/model/software_download_history_response.py index 47afac0b15..c480836159 100644 --- a/intersight/model/software_download_history_response.py +++ b/intersight/model/software_download_history_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/software_hcl_meta.py b/intersight/model/software_hcl_meta.py index 32aad4d5ba..4cd4b47e49 100644 --- a/intersight/model/software_hcl_meta.py +++ b/intersight/model/software_hcl_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/software_hcl_meta_all_of.py b/intersight/model/software_hcl_meta_all_of.py index a753ebd669..a768117e37 100644 --- a/intersight/model/software_hcl_meta_all_of.py +++ b/intersight/model/software_hcl_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/software_hcl_meta_list.py b/intersight/model/software_hcl_meta_list.py index 50044cffc1..d1439efd08 100644 --- a/intersight/model/software_hcl_meta_list.py +++ b/intersight/model/software_hcl_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/software_hcl_meta_list_all_of.py b/intersight/model/software_hcl_meta_list_all_of.py index e92e01c5da..261d5966ee 100644 --- a/intersight/model/software_hcl_meta_list_all_of.py +++ b/intersight/model/software_hcl_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/software_hcl_meta_response.py b/intersight/model/software_hcl_meta_response.py index 54d4614ff4..0b58a3bea9 100644 --- a/intersight/model/software_hcl_meta_response.py +++ b/intersight/model/software_hcl_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/software_hyperflex_bundle_distributable.py b/intersight/model/software_hyperflex_bundle_distributable.py index 86d0ab9592..b4c41f0d0a 100644 --- a/intersight/model/software_hyperflex_bundle_distributable.py +++ b/intersight/model/software_hyperflex_bundle_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/software_hyperflex_bundle_distributable_all_of.py b/intersight/model/software_hyperflex_bundle_distributable_all_of.py index 70949c1311..873e43e96f 100644 --- a/intersight/model/software_hyperflex_bundle_distributable_all_of.py +++ b/intersight/model/software_hyperflex_bundle_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/software_hyperflex_bundle_distributable_list.py b/intersight/model/software_hyperflex_bundle_distributable_list.py index 40d0b7a036..acf6c3b0c4 100644 --- a/intersight/model/software_hyperflex_bundle_distributable_list.py +++ b/intersight/model/software_hyperflex_bundle_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/software_hyperflex_bundle_distributable_list_all_of.py b/intersight/model/software_hyperflex_bundle_distributable_list_all_of.py index bc0916c968..7aa76ef625 100644 --- a/intersight/model/software_hyperflex_bundle_distributable_list_all_of.py +++ b/intersight/model/software_hyperflex_bundle_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/software_hyperflex_bundle_distributable_response.py b/intersight/model/software_hyperflex_bundle_distributable_response.py index a838a6b686..f1ce43cda0 100644 --- a/intersight/model/software_hyperflex_bundle_distributable_response.py +++ b/intersight/model/software_hyperflex_bundle_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/software_hyperflex_distributable.py b/intersight/model/software_hyperflex_distributable.py index 26596ac45d..ad2682264a 100644 --- a/intersight/model/software_hyperflex_distributable.py +++ b/intersight/model/software_hyperflex_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/software_hyperflex_distributable_all_of.py b/intersight/model/software_hyperflex_distributable_all_of.py index 320635be8d..b1629e43c5 100644 --- a/intersight/model/software_hyperflex_distributable_all_of.py +++ b/intersight/model/software_hyperflex_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/software_hyperflex_distributable_list.py b/intersight/model/software_hyperflex_distributable_list.py index c429fd774f..2eeb8fcd8e 100644 --- a/intersight/model/software_hyperflex_distributable_list.py +++ b/intersight/model/software_hyperflex_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/software_hyperflex_distributable_list_all_of.py b/intersight/model/software_hyperflex_distributable_list_all_of.py index cb434a8ef5..0f7829f098 100644 --- a/intersight/model/software_hyperflex_distributable_list_all_of.py +++ b/intersight/model/software_hyperflex_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/software_hyperflex_distributable_relationship.py b/intersight/model/software_hyperflex_distributable_relationship.py index 9f6c08a0bf..6d57f41d1a 100644 --- a/intersight/model/software_hyperflex_distributable_relationship.py +++ b/intersight/model/software_hyperflex_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 SoftwareHyperflexDistributableRelationship(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 SoftwareHyperflexDistributableRelationship(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 SoftwareHyperflexDistributableRelationship(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 SoftwareHyperflexDistributableRelationship(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 SoftwareHyperflexDistributableRelationship(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 SoftwareHyperflexDistributableRelationship(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 SoftwareHyperflexDistributableRelationship(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 SoftwareHyperflexDistributableRelationship(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 SoftwareHyperflexDistributableRelationship(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 SoftwareHyperflexDistributableRelationship(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/software_hyperflex_distributable_response.py b/intersight/model/software_hyperflex_distributable_response.py index bb80162e0b..effe0c3ac5 100644 --- a/intersight/model/software_hyperflex_distributable_response.py +++ b/intersight/model/software_hyperflex_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/software_release_meta.py b/intersight/model/software_release_meta.py index 6d3914d296..7edcc43b8f 100644 --- a/intersight/model/software_release_meta.py +++ b/intersight/model/software_release_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/software_release_meta_all_of.py b/intersight/model/software_release_meta_all_of.py index 9e8440b11a..2d04561868 100644 --- a/intersight/model/software_release_meta_all_of.py +++ b/intersight/model/software_release_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/software_release_meta_list.py b/intersight/model/software_release_meta_list.py index 4ecc90f3b7..1af2c4b326 100644 --- a/intersight/model/software_release_meta_list.py +++ b/intersight/model/software_release_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/software_release_meta_list_all_of.py b/intersight/model/software_release_meta_list_all_of.py index 2c1193a4fd..3046d1cf29 100644 --- a/intersight/model/software_release_meta_list_all_of.py +++ b/intersight/model/software_release_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/software_release_meta_response.py b/intersight/model/software_release_meta_response.py index a01f099f97..0d49bddafc 100644 --- a/intersight/model/software_release_meta_response.py +++ b/intersight/model/software_release_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/software_solution_distributable.py b/intersight/model/software_solution_distributable.py index 133f2bb019..235cb95e36 100644 --- a/intersight/model/software_solution_distributable.py +++ b/intersight/model/software_solution_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/software_solution_distributable_all_of.py b/intersight/model/software_solution_distributable_all_of.py index 55a7fcd392..bd3de199dd 100644 --- a/intersight/model/software_solution_distributable_all_of.py +++ b/intersight/model/software_solution_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/software_solution_distributable_list.py b/intersight/model/software_solution_distributable_list.py index 3e77a278de..8ead5c3ae5 100644 --- a/intersight/model/software_solution_distributable_list.py +++ b/intersight/model/software_solution_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/software_solution_distributable_list_all_of.py b/intersight/model/software_solution_distributable_list_all_of.py index 4049dbf71c..ad6614cc2b 100644 --- a/intersight/model/software_solution_distributable_list_all_of.py +++ b/intersight/model/software_solution_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/software_solution_distributable_relationship.py b/intersight/model/software_solution_distributable_relationship.py index fb0e0b19b0..663a783f9c 100644 --- a/intersight/model/software_solution_distributable_relationship.py +++ b/intersight/model/software_solution_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 SoftwareSolutionDistributableRelationship(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 SoftwareSolutionDistributableRelationship(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 SoftwareSolutionDistributableRelationship(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 SoftwareSolutionDistributableRelationship(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 SoftwareSolutionDistributableRelationship(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 SoftwareSolutionDistributableRelationship(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 SoftwareSolutionDistributableRelationship(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 SoftwareSolutionDistributableRelationship(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 SoftwareSolutionDistributableRelationship(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 SoftwareSolutionDistributableRelationship(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/software_solution_distributable_response.py b/intersight/model/software_solution_distributable_response.py index 8013c37799..47c360700b 100644 --- a/intersight/model/software_solution_distributable_response.py +++ b/intersight/model/software_solution_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/software_ucsd_bundle_distributable.py b/intersight/model/software_ucsd_bundle_distributable.py index 32fa24018f..ac6d4f7def 100644 --- a/intersight/model/software_ucsd_bundle_distributable.py +++ b/intersight/model/software_ucsd_bundle_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/software_ucsd_bundle_distributable_all_of.py b/intersight/model/software_ucsd_bundle_distributable_all_of.py index 07c0cbf1c8..73cc593c38 100644 --- a/intersight/model/software_ucsd_bundle_distributable_all_of.py +++ b/intersight/model/software_ucsd_bundle_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/software_ucsd_bundle_distributable_list.py b/intersight/model/software_ucsd_bundle_distributable_list.py index 070b8c2f28..dc0799e684 100644 --- a/intersight/model/software_ucsd_bundle_distributable_list.py +++ b/intersight/model/software_ucsd_bundle_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/software_ucsd_bundle_distributable_list_all_of.py b/intersight/model/software_ucsd_bundle_distributable_list_all_of.py index 218852b4be..a821583a2d 100644 --- a/intersight/model/software_ucsd_bundle_distributable_list_all_of.py +++ b/intersight/model/software_ucsd_bundle_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/software_ucsd_bundle_distributable_response.py b/intersight/model/software_ucsd_bundle_distributable_response.py index 425335b42c..bb5078f6ee 100644 --- a/intersight/model/software_ucsd_bundle_distributable_response.py +++ b/intersight/model/software_ucsd_bundle_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/software_ucsd_distributable.py b/intersight/model/software_ucsd_distributable.py index 400699965e..fb99d4f321 100644 --- a/intersight/model/software_ucsd_distributable.py +++ b/intersight/model/software_ucsd_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/software_ucsd_distributable_all_of.py b/intersight/model/software_ucsd_distributable_all_of.py index 28cc272573..1efabd1ac1 100644 --- a/intersight/model/software_ucsd_distributable_all_of.py +++ b/intersight/model/software_ucsd_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/software_ucsd_distributable_list.py b/intersight/model/software_ucsd_distributable_list.py index 4918c221b5..ccbc253ae1 100644 --- a/intersight/model/software_ucsd_distributable_list.py +++ b/intersight/model/software_ucsd_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/software_ucsd_distributable_list_all_of.py b/intersight/model/software_ucsd_distributable_list_all_of.py index 003a0cd74f..85601db2e8 100644 --- a/intersight/model/software_ucsd_distributable_list_all_of.py +++ b/intersight/model/software_ucsd_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/software_ucsd_distributable_relationship.py b/intersight/model/software_ucsd_distributable_relationship.py index b3feb7ef17..bd6b72731e 100644 --- a/intersight/model/software_ucsd_distributable_relationship.py +++ b/intersight/model/software_ucsd_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 SoftwareUcsdDistributableRelationship(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 SoftwareUcsdDistributableRelationship(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 SoftwareUcsdDistributableRelationship(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 SoftwareUcsdDistributableRelationship(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 SoftwareUcsdDistributableRelationship(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 SoftwareUcsdDistributableRelationship(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 SoftwareUcsdDistributableRelationship(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 SoftwareUcsdDistributableRelationship(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 SoftwareUcsdDistributableRelationship(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 SoftwareUcsdDistributableRelationship(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/software_ucsd_distributable_response.py b/intersight/model/software_ucsd_distributable_response.py index 42d8a46808..8221dbc74c 100644 --- a/intersight/model/software_ucsd_distributable_response.py +++ b/intersight/model/software_ucsd_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/softwarerepository_appliance_upload.py b/intersight/model/softwarerepository_appliance_upload.py index 5acf77ac19..85185ec0a1 100644 --- a/intersight/model/softwarerepository_appliance_upload.py +++ b/intersight/model/softwarerepository_appliance_upload.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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 SoftwarerepositoryApplianceUpload(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/softwarerepository_authorization.py b/intersight/model/softwarerepository_authorization.py index fa3e2b3ffa..0ece6d0142 100644 --- a/intersight/model/softwarerepository_authorization.py +++ b/intersight/model/softwarerepository_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/softwarerepository_authorization_all_of.py b/intersight/model/softwarerepository_authorization_all_of.py index 9d2dd9a185..40a645ddc0 100644 --- a/intersight/model/softwarerepository_authorization_all_of.py +++ b/intersight/model/softwarerepository_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/softwarerepository_authorization_list.py b/intersight/model/softwarerepository_authorization_list.py index 8a693bbb81..df2597adec 100644 --- a/intersight/model/softwarerepository_authorization_list.py +++ b/intersight/model/softwarerepository_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/softwarerepository_authorization_list_all_of.py b/intersight/model/softwarerepository_authorization_list_all_of.py index 775335e3f9..d158897e9c 100644 --- a/intersight/model/softwarerepository_authorization_list_all_of.py +++ b/intersight/model/softwarerepository_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/softwarerepository_authorization_response.py b/intersight/model/softwarerepository_authorization_response.py index ef5ae267c3..ed045ad3cd 100644 --- a/intersight/model/softwarerepository_authorization_response.py +++ b/intersight/model/softwarerepository_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/softwarerepository_cached_image.py b/intersight/model/softwarerepository_cached_image.py index 4b2560b79d..5fa862ece4 100644 --- a/intersight/model/softwarerepository_cached_image.py +++ b/intersight/model/softwarerepository_cached_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/softwarerepository_cached_image_all_of.py b/intersight/model/softwarerepository_cached_image_all_of.py index c81d1e4a3c..2682d6f554 100644 --- a/intersight/model/softwarerepository_cached_image_all_of.py +++ b/intersight/model/softwarerepository_cached_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/softwarerepository_cached_image_list.py b/intersight/model/softwarerepository_cached_image_list.py index 055b7fc736..7d6229b0a1 100644 --- a/intersight/model/softwarerepository_cached_image_list.py +++ b/intersight/model/softwarerepository_cached_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/softwarerepository_cached_image_list_all_of.py b/intersight/model/softwarerepository_cached_image_list_all_of.py index 9db721e54f..b40ac7de0b 100644 --- a/intersight/model/softwarerepository_cached_image_list_all_of.py +++ b/intersight/model/softwarerepository_cached_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/softwarerepository_cached_image_response.py b/intersight/model/softwarerepository_cached_image_response.py index bf4ff2f69b..2b38d604a9 100644 --- a/intersight/model/softwarerepository_cached_image_response.py +++ b/intersight/model/softwarerepository_cached_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/softwarerepository_catalog.py b/intersight/model/softwarerepository_catalog.py index 11410923f4..e1a09311bd 100644 --- a/intersight/model/softwarerepository_catalog.py +++ b/intersight/model/softwarerepository_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/softwarerepository_catalog_all_of.py b/intersight/model/softwarerepository_catalog_all_of.py index 7fd5abaa37..77fbaaac84 100644 --- a/intersight/model/softwarerepository_catalog_all_of.py +++ b/intersight/model/softwarerepository_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/softwarerepository_catalog_list.py b/intersight/model/softwarerepository_catalog_list.py index 2fcf591a4a..dc9ab2978f 100644 --- a/intersight/model/softwarerepository_catalog_list.py +++ b/intersight/model/softwarerepository_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/softwarerepository_catalog_list_all_of.py b/intersight/model/softwarerepository_catalog_list_all_of.py index 26202a5e4a..62d8fe5f96 100644 --- a/intersight/model/softwarerepository_catalog_list_all_of.py +++ b/intersight/model/softwarerepository_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/softwarerepository_catalog_relationship.py b/intersight/model/softwarerepository_catalog_relationship.py index 8c9a4c1fc0..cfda8eb1c2 100644 --- a/intersight/model/softwarerepository_catalog_relationship.py +++ b/intersight/model/softwarerepository_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 """ @@ -76,6 +76,8 @@ class SoftwarerepositoryCatalogRelationship(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 SoftwarerepositoryCatalogRelationship(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 SoftwarerepositoryCatalogRelationship(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 SoftwarerepositoryCatalogRelationship(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 SoftwarerepositoryCatalogRelationship(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 SoftwarerepositoryCatalogRelationship(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 SoftwarerepositoryCatalogRelationship(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 SoftwarerepositoryCatalogRelationship(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 SoftwarerepositoryCatalogRelationship(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 SoftwarerepositoryCatalogRelationship(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/softwarerepository_catalog_response.py b/intersight/model/softwarerepository_catalog_response.py index c876002acc..d38937e47b 100644 --- a/intersight/model/softwarerepository_catalog_response.py +++ b/intersight/model/softwarerepository_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/softwarerepository_category_mapper.py b/intersight/model/softwarerepository_category_mapper.py index 1e6fb2217f..793c81d253 100644 --- a/intersight/model/softwarerepository_category_mapper.py +++ b/intersight/model/softwarerepository_category_mapper.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_category_mapper_all_of.py b/intersight/model/softwarerepository_category_mapper_all_of.py index 040686e2c9..1b716ef27c 100644 --- a/intersight/model/softwarerepository_category_mapper_all_of.py +++ b/intersight/model/softwarerepository_category_mapper_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_category_mapper_list.py b/intersight/model/softwarerepository_category_mapper_list.py index 3913a10540..81cdb615cc 100644 --- a/intersight/model/softwarerepository_category_mapper_list.py +++ b/intersight/model/softwarerepository_category_mapper_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/softwarerepository_category_mapper_list_all_of.py b/intersight/model/softwarerepository_category_mapper_list_all_of.py index f6e2a57145..1f438dc586 100644 --- a/intersight/model/softwarerepository_category_mapper_list_all_of.py +++ b/intersight/model/softwarerepository_category_mapper_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/softwarerepository_category_mapper_model.py b/intersight/model/softwarerepository_category_mapper_model.py index 7fec34124d..746e4dbf34 100644 --- a/intersight/model/softwarerepository_category_mapper_model.py +++ b/intersight/model/softwarerepository_category_mapper_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/softwarerepository_category_mapper_model_all_of.py b/intersight/model/softwarerepository_category_mapper_model_all_of.py index c83404b1a3..fa2f6583a6 100644 --- a/intersight/model/softwarerepository_category_mapper_model_all_of.py +++ b/intersight/model/softwarerepository_category_mapper_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/softwarerepository_category_mapper_model_list.py b/intersight/model/softwarerepository_category_mapper_model_list.py index f01257990a..4ff2191882 100644 --- a/intersight/model/softwarerepository_category_mapper_model_list.py +++ b/intersight/model/softwarerepository_category_mapper_model_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/softwarerepository_category_mapper_model_list_all_of.py b/intersight/model/softwarerepository_category_mapper_model_list_all_of.py index 1da486051e..b1193881b9 100644 --- a/intersight/model/softwarerepository_category_mapper_model_list_all_of.py +++ b/intersight/model/softwarerepository_category_mapper_model_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/softwarerepository_category_mapper_model_response.py b/intersight/model/softwarerepository_category_mapper_model_response.py index 1d8202bc61..c9659ac307 100644 --- a/intersight/model/softwarerepository_category_mapper_model_response.py +++ b/intersight/model/softwarerepository_category_mapper_model_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/softwarerepository_category_mapper_response.py b/intersight/model/softwarerepository_category_mapper_response.py index 13036da9d1..0676164d34 100644 --- a/intersight/model/softwarerepository_category_mapper_response.py +++ b/intersight/model/softwarerepository_category_mapper_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/softwarerepository_category_support_constraint.py b/intersight/model/softwarerepository_category_support_constraint.py index 02bf7f4fc0..d4f2f90395 100644 --- a/intersight/model/softwarerepository_category_support_constraint.py +++ b/intersight/model/softwarerepository_category_support_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/softwarerepository_category_support_constraint_all_of.py b/intersight/model/softwarerepository_category_support_constraint_all_of.py index 037ed62946..58a23e63e0 100644 --- a/intersight/model/softwarerepository_category_support_constraint_all_of.py +++ b/intersight/model/softwarerepository_category_support_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/softwarerepository_category_support_constraint_list.py b/intersight/model/softwarerepository_category_support_constraint_list.py index 6c7d0c6f90..5a034b1c4d 100644 --- a/intersight/model/softwarerepository_category_support_constraint_list.py +++ b/intersight/model/softwarerepository_category_support_constraint_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/softwarerepository_category_support_constraint_list_all_of.py b/intersight/model/softwarerepository_category_support_constraint_list_all_of.py index d86c1f410d..c98facf7f1 100644 --- a/intersight/model/softwarerepository_category_support_constraint_list_all_of.py +++ b/intersight/model/softwarerepository_category_support_constraint_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/softwarerepository_category_support_constraint_response.py b/intersight/model/softwarerepository_category_support_constraint_response.py index de1a90e3bd..62f9ec6900 100644 --- a/intersight/model/softwarerepository_category_support_constraint_response.py +++ b/intersight/model/softwarerepository_category_support_constraint_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/softwarerepository_cifs_server.py b/intersight/model/softwarerepository_cifs_server.py index 258627bb94..9433f3f12a 100644 --- a/intersight/model/softwarerepository_cifs_server.py +++ b/intersight/model/softwarerepository_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/softwarerepository_cifs_server_all_of.py b/intersight/model/softwarerepository_cifs_server_all_of.py index b6449e74e6..95f8c11a24 100644 --- a/intersight/model/softwarerepository_cifs_server_all_of.py +++ b/intersight/model/softwarerepository_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/softwarerepository_constraint_models.py b/intersight/model/softwarerepository_constraint_models.py index 762f3485cb..3ab57df67c 100644 --- a/intersight/model/softwarerepository_constraint_models.py +++ b/intersight/model/softwarerepository_constraint_models.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_constraint_models_all_of.py b/intersight/model/softwarerepository_constraint_models_all_of.py index d7af37ac41..cc49e5702d 100644 --- a/intersight/model/softwarerepository_constraint_models_all_of.py +++ b/intersight/model/softwarerepository_constraint_models_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_download_spec.py b/intersight/model/softwarerepository_download_spec.py index 4cbddd37db..cebd52ec0a 100644 --- a/intersight/model/softwarerepository_download_spec.py +++ b/intersight/model/softwarerepository_download_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_download_spec_all_of.py b/intersight/model/softwarerepository_download_spec_all_of.py index c3a7a38e7e..8d87b1ec6f 100644 --- a/intersight/model/softwarerepository_download_spec_all_of.py +++ b/intersight/model/softwarerepository_download_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_download_spec_list.py b/intersight/model/softwarerepository_download_spec_list.py index 29853a6fc9..b4c3561e4a 100644 --- a/intersight/model/softwarerepository_download_spec_list.py +++ b/intersight/model/softwarerepository_download_spec_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/softwarerepository_download_spec_list_all_of.py b/intersight/model/softwarerepository_download_spec_list_all_of.py index 0db62b877a..519bef64fc 100644 --- a/intersight/model/softwarerepository_download_spec_list_all_of.py +++ b/intersight/model/softwarerepository_download_spec_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/softwarerepository_download_spec_response.py b/intersight/model/softwarerepository_download_spec_response.py index 5f97a029d8..0be0572618 100644 --- a/intersight/model/softwarerepository_download_spec_response.py +++ b/intersight/model/softwarerepository_download_spec_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/softwarerepository_file.py b/intersight/model/softwarerepository_file.py index 59d83bb1be..2d179c0756 100644 --- a/intersight/model/softwarerepository_file.py +++ b/intersight/model/softwarerepository_file.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_file_all_of.py b/intersight/model/softwarerepository_file_all_of.py index 5990a3b44c..b1cc6b8f2d 100644 --- a/intersight/model/softwarerepository_file_all_of.py +++ b/intersight/model/softwarerepository_file_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_file_relationship.py b/intersight/model/softwarerepository_file_relationship.py index 820b1685b2..5a24a19889 100644 --- a/intersight/model/softwarerepository_file_relationship.py +++ b/intersight/model/softwarerepository_file_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 """ @@ -102,6 +102,8 @@ class SoftwarerepositoryFileRelationship(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", @@ -118,6 +120,7 @@ class SoftwarerepositoryFileRelationship(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", @@ -166,9 +169,12 @@ class SoftwarerepositoryFileRelationship(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", @@ -232,10 +238,6 @@ class SoftwarerepositoryFileRelationship(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", @@ -244,6 +246,7 @@ class SoftwarerepositoryFileRelationship(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", @@ -492,6 +495,7 @@ class SoftwarerepositoryFileRelationship(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", @@ -661,6 +665,11 @@ class SoftwarerepositoryFileRelationship(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", @@ -776,6 +785,7 @@ class SoftwarerepositoryFileRelationship(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", @@ -807,6 +817,7 @@ class SoftwarerepositoryFileRelationship(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", @@ -839,12 +850,14 @@ class SoftwarerepositoryFileRelationship(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/softwarerepository_file_server.py b/intersight/model/softwarerepository_file_server.py index 62a5154103..0791c80287 100644 --- a/intersight/model/softwarerepository_file_server.py +++ b/intersight/model/softwarerepository_file_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 """ @@ -132,6 +132,7 @@ class SoftwarerepositoryFileServer(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", @@ -172,7 +173,6 @@ class SoftwarerepositoryFileServer(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", @@ -308,6 +308,7 @@ class SoftwarerepositoryFileServer(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", @@ -316,6 +317,8 @@ class SoftwarerepositoryFileServer(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", @@ -327,6 +330,7 @@ class SoftwarerepositoryFileServer(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", @@ -338,6 +342,7 @@ class SoftwarerepositoryFileServer(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", @@ -395,6 +400,8 @@ class SoftwarerepositoryFileServer(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", @@ -404,6 +411,7 @@ class SoftwarerepositoryFileServer(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", @@ -639,6 +647,7 @@ class SoftwarerepositoryFileServer(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", @@ -679,7 +688,6 @@ class SoftwarerepositoryFileServer(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", @@ -815,6 +823,7 @@ class SoftwarerepositoryFileServer(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", @@ -823,6 +832,8 @@ class SoftwarerepositoryFileServer(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", @@ -834,6 +845,7 @@ class SoftwarerepositoryFileServer(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", @@ -845,6 +857,7 @@ class SoftwarerepositoryFileServer(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", @@ -902,6 +915,8 @@ class SoftwarerepositoryFileServer(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", @@ -911,6 +926,7 @@ class SoftwarerepositoryFileServer(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/softwarerepository_http_server.py b/intersight/model/softwarerepository_http_server.py index 6f74002275..e18a2c2e65 100644 --- a/intersight/model/softwarerepository_http_server.py +++ b/intersight/model/softwarerepository_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/softwarerepository_http_server_all_of.py b/intersight/model/softwarerepository_http_server_all_of.py index 78aae050f1..d6f98cf199 100644 --- a/intersight/model/softwarerepository_http_server_all_of.py +++ b/intersight/model/softwarerepository_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/softwarerepository_import_result.py b/intersight/model/softwarerepository_import_result.py index 86556f75a9..0a294a17d9 100644 --- a/intersight/model/softwarerepository_import_result.py +++ b/intersight/model/softwarerepository_import_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/softwarerepository_import_result_all_of.py b/intersight/model/softwarerepository_import_result_all_of.py index fa34ca3447..33eff82268 100644 --- a/intersight/model/softwarerepository_import_result_all_of.py +++ b/intersight/model/softwarerepository_import_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/softwarerepository_local_machine.py b/intersight/model/softwarerepository_local_machine.py index 946788e251..c3fc96ae7a 100644 --- a/intersight/model/softwarerepository_local_machine.py +++ b/intersight/model/softwarerepository_local_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 """ diff --git a/intersight/model/softwarerepository_local_machine_all_of.py b/intersight/model/softwarerepository_local_machine_all_of.py index 2595b68f32..f48efe5cd8 100644 --- a/intersight/model/softwarerepository_local_machine_all_of.py +++ b/intersight/model/softwarerepository_local_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/softwarerepository_nfs_server.py b/intersight/model/softwarerepository_nfs_server.py index 13bae1ce5e..efffd47191 100644 --- a/intersight/model/softwarerepository_nfs_server.py +++ b/intersight/model/softwarerepository_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/softwarerepository_nfs_server_all_of.py b/intersight/model/softwarerepository_nfs_server_all_of.py index 6422aa0096..7c3379e380 100644 --- a/intersight/model/softwarerepository_nfs_server_all_of.py +++ b/intersight/model/softwarerepository_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/softwarerepository_operating_system_file.py b/intersight/model/softwarerepository_operating_system_file.py index 812661ea37..abda7069ac 100644 --- a/intersight/model/softwarerepository_operating_system_file.py +++ b/intersight/model/softwarerepository_operating_system_file.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_operating_system_file_all_of.py b/intersight/model/softwarerepository_operating_system_file_all_of.py index b0d68e7908..9a384ea550 100644 --- a/intersight/model/softwarerepository_operating_system_file_all_of.py +++ b/intersight/model/softwarerepository_operating_system_file_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_operating_system_file_list.py b/intersight/model/softwarerepository_operating_system_file_list.py index 5fe5ee86da..6180649fa8 100644 --- a/intersight/model/softwarerepository_operating_system_file_list.py +++ b/intersight/model/softwarerepository_operating_system_file_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/softwarerepository_operating_system_file_list_all_of.py b/intersight/model/softwarerepository_operating_system_file_list_all_of.py index 356e57607a..1850f1e2a3 100644 --- a/intersight/model/softwarerepository_operating_system_file_list_all_of.py +++ b/intersight/model/softwarerepository_operating_system_file_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/softwarerepository_operating_system_file_relationship.py b/intersight/model/softwarerepository_operating_system_file_relationship.py index 2655341ac3..0ea4a33745 100644 --- a/intersight/model/softwarerepository_operating_system_file_relationship.py +++ b/intersight/model/softwarerepository_operating_system_file_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 SoftwarerepositoryOperatingSystemFileRelationship(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 SoftwarerepositoryOperatingSystemFileRelationship(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 SoftwarerepositoryOperatingSystemFileRelationship(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 SoftwarerepositoryOperatingSystemFileRelationship(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 SoftwarerepositoryOperatingSystemFileRelationship(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 SoftwarerepositoryOperatingSystemFileRelationship(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 SoftwarerepositoryOperatingSystemFileRelationship(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 SoftwarerepositoryOperatingSystemFileRelationship(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 SoftwarerepositoryOperatingSystemFileRelationship(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 SoftwarerepositoryOperatingSystemFileRelationship(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/softwarerepository_operating_system_file_response.py b/intersight/model/softwarerepository_operating_system_file_response.py index ca5f94a064..408251cdd7 100644 --- a/intersight/model/softwarerepository_operating_system_file_response.py +++ b/intersight/model/softwarerepository_operating_system_file_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/softwarerepository_release.py b/intersight/model/softwarerepository_release.py index 5fed3119dc..c93b3012d2 100644 --- a/intersight/model/softwarerepository_release.py +++ b/intersight/model/softwarerepository_release.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_release_all_of.py b/intersight/model/softwarerepository_release_all_of.py index c6a125db7a..f1604e4772 100644 --- a/intersight/model/softwarerepository_release_all_of.py +++ b/intersight/model/softwarerepository_release_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/softwarerepository_release_list.py b/intersight/model/softwarerepository_release_list.py index 9e474f376a..71681354ba 100644 --- a/intersight/model/softwarerepository_release_list.py +++ b/intersight/model/softwarerepository_release_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/softwarerepository_release_list_all_of.py b/intersight/model/softwarerepository_release_list_all_of.py index ddc0306338..3b38bc7039 100644 --- a/intersight/model/softwarerepository_release_list_all_of.py +++ b/intersight/model/softwarerepository_release_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/softwarerepository_release_relationship.py b/intersight/model/softwarerepository_release_relationship.py index 9dcc1a7915..d97acfb514 100644 --- a/intersight/model/softwarerepository_release_relationship.py +++ b/intersight/model/softwarerepository_release_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 SoftwarerepositoryReleaseRelationship(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 SoftwarerepositoryReleaseRelationship(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 SoftwarerepositoryReleaseRelationship(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 SoftwarerepositoryReleaseRelationship(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 SoftwarerepositoryReleaseRelationship(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 SoftwarerepositoryReleaseRelationship(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 SoftwarerepositoryReleaseRelationship(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 SoftwarerepositoryReleaseRelationship(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 SoftwarerepositoryReleaseRelationship(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 SoftwarerepositoryReleaseRelationship(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/softwarerepository_release_response.py b/intersight/model/softwarerepository_release_response.py index add3e259de..166e279478 100644 --- a/intersight/model/softwarerepository_release_response.py +++ b/intersight/model/softwarerepository_release_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/sol_policy.py b/intersight/model/sol_policy.py index 09e7783159..f4d686af33 100644 --- a/intersight/model/sol_policy.py +++ b/intersight/model/sol_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/sol_policy_all_of.py b/intersight/model/sol_policy_all_of.py index a800f6ab7a..2edeac21e9 100644 --- a/intersight/model/sol_policy_all_of.py +++ b/intersight/model/sol_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/sol_policy_list.py b/intersight/model/sol_policy_list.py index 241a513a25..de4286e6f3 100644 --- a/intersight/model/sol_policy_list.py +++ b/intersight/model/sol_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/sol_policy_list_all_of.py b/intersight/model/sol_policy_list_all_of.py index eed39ccdd1..e3cbeb94bb 100644 --- a/intersight/model/sol_policy_list_all_of.py +++ b/intersight/model/sol_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/sol_policy_response.py b/intersight/model/sol_policy_response.py index 39081394c9..dd1baa029d 100644 --- a/intersight/model/sol_policy_response.py +++ b/intersight/model/sol_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/ssh_policy.py b/intersight/model/ssh_policy.py index b65f936d0c..d70b197ec9 100644 --- a/intersight/model/ssh_policy.py +++ b/intersight/model/ssh_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/ssh_policy_all_of.py b/intersight/model/ssh_policy_all_of.py index e71308c4f4..2b4791d8b6 100644 --- a/intersight/model/ssh_policy_all_of.py +++ b/intersight/model/ssh_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/ssh_policy_list.py b/intersight/model/ssh_policy_list.py index 24027c8313..ae0da85dc7 100644 --- a/intersight/model/ssh_policy_list.py +++ b/intersight/model/ssh_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/ssh_policy_list_all_of.py b/intersight/model/ssh_policy_list_all_of.py index 627e5b5a38..3f1b0e1827 100644 --- a/intersight/model/ssh_policy_list_all_of.py +++ b/intersight/model/ssh_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/ssh_policy_response.py b/intersight/model/ssh_policy_response.py index 362c1243aa..03159be738 100644 --- a/intersight/model/ssh_policy_response.py +++ b/intersight/model/ssh_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/storage_automatic_drive_group.py b/intersight/model/storage_automatic_drive_group.py index cc031d2871..f1fd83c3da 100644 --- a/intersight/model/storage_automatic_drive_group.py +++ b/intersight/model/storage_automatic_drive_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/storage_automatic_drive_group_all_of.py b/intersight/model/storage_automatic_drive_group_all_of.py index d5c3d08a09..5222d02dde 100644 --- a/intersight/model/storage_automatic_drive_group_all_of.py +++ b/intersight/model/storage_automatic_drive_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/storage_base_array.py b/intersight/model/storage_base_array.py index c6cec6095f..1af3f76bbd 100644 --- a/intersight/model/storage_base_array.py +++ b/intersight/model/storage_base_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/storage_base_array_all_of.py b/intersight/model/storage_base_array_all_of.py index e017eb5d10..2fd2485599 100644 --- a/intersight/model/storage_base_array_all_of.py +++ b/intersight/model/storage_base_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/storage_base_array_controller.py b/intersight/model/storage_base_array_controller.py index f1e9cd5805..9810d5c758 100644 --- a/intersight/model/storage_base_array_controller.py +++ b/intersight/model/storage_base_array_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/storage_base_array_controller_all_of.py b/intersight/model/storage_base_array_controller_all_of.py index 6c8a6f8c8d..25eb967513 100644 --- a/intersight/model/storage_base_array_controller_all_of.py +++ b/intersight/model/storage_base_array_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/storage_base_array_disk.py b/intersight/model/storage_base_array_disk.py index 909e1e846e..2d2334541f 100644 --- a/intersight/model/storage_base_array_disk.py +++ b/intersight/model/storage_base_array_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/storage_base_array_disk_all_of.py b/intersight/model/storage_base_array_disk_all_of.py index e992d6b0c8..1f9050604c 100644 --- a/intersight/model/storage_base_array_disk_all_of.py +++ b/intersight/model/storage_base_array_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/storage_base_capacity.py b/intersight/model/storage_base_capacity.py index 825edf0d56..a24bb91370 100644 --- a/intersight/model/storage_base_capacity.py +++ b/intersight/model/storage_base_capacity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_capacity_all_of.py b/intersight/model/storage_base_capacity_all_of.py index 7a12c05277..7df9e5d1ca 100644 --- a/intersight/model/storage_base_capacity_all_of.py +++ b/intersight/model/storage_base_capacity_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_disk_pool.py b/intersight/model/storage_base_disk_pool.py index 2b319ed581..8761a73644 100644 --- a/intersight/model/storage_base_disk_pool.py +++ b/intersight/model/storage_base_disk_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/storage_base_disk_pool_all_of.py b/intersight/model/storage_base_disk_pool_all_of.py index 05e13ce6eb..bf04805231 100644 --- a/intersight/model/storage_base_disk_pool_all_of.py +++ b/intersight/model/storage_base_disk_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/storage_base_host.py b/intersight/model/storage_base_host.py index e13a5353ba..0287538825 100644 --- a/intersight/model/storage_base_host.py +++ b/intersight/model/storage_base_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/storage_base_host_all_of.py b/intersight/model/storage_base_host_all_of.py index 2057e45ad7..22c08c1add 100644 --- a/intersight/model/storage_base_host_all_of.py +++ b/intersight/model/storage_base_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/storage_base_host_group.py b/intersight/model/storage_base_host_group.py index bd36f48af2..98a117a081 100644 --- a/intersight/model/storage_base_host_group.py +++ b/intersight/model/storage_base_host_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/storage_base_host_group_all_of.py b/intersight/model/storage_base_host_group_all_of.py index 1fe139f897..66eaeea91a 100644 --- a/intersight/model/storage_base_host_group_all_of.py +++ b/intersight/model/storage_base_host_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/storage_base_host_lun.py b/intersight/model/storage_base_host_lun.py index ab521e7e38..686a56442c 100644 --- a/intersight/model/storage_base_host_lun.py +++ b/intersight/model/storage_base_host_lun.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_host_lun_all_of.py b/intersight/model/storage_base_host_lun_all_of.py index a0a4bf1b1e..97709076ef 100644 --- a/intersight/model/storage_base_host_lun_all_of.py +++ b/intersight/model/storage_base_host_lun_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_initiator.py b/intersight/model/storage_base_initiator.py index dd538bc32f..4c56fc6413 100644 --- a/intersight/model/storage_base_initiator.py +++ b/intersight/model/storage_base_initiator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_initiator_all_of.py b/intersight/model/storage_base_initiator_all_of.py index 415736f0bf..5d4c6a7e23 100644 --- a/intersight/model/storage_base_initiator_all_of.py +++ b/intersight/model/storage_base_initiator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_nfs_export.py b/intersight/model/storage_base_nfs_export.py index 092021bea6..baf9c9402c 100644 --- a/intersight/model/storage_base_nfs_export.py +++ b/intersight/model/storage_base_nfs_export.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_nfs_export_all_of.py b/intersight/model/storage_base_nfs_export_all_of.py index 5554c609cb..635e346327 100644 --- a/intersight/model/storage_base_nfs_export_all_of.py +++ b/intersight/model/storage_base_nfs_export_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_physical_port.py b/intersight/model/storage_base_physical_port.py index 3e8aca642b..612ef562a4 100644 --- a/intersight/model/storage_base_physical_port.py +++ b/intersight/model/storage_base_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/storage_base_physical_port_all_of.py b/intersight/model/storage_base_physical_port_all_of.py index 179bb4490b..170a1621ef 100644 --- a/intersight/model/storage_base_physical_port_all_of.py +++ b/intersight/model/storage_base_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/storage_base_protection_group.py b/intersight/model/storage_base_protection_group.py index e671b80ee1..c0901e96db 100644 --- a/intersight/model/storage_base_protection_group.py +++ b/intersight/model/storage_base_protection_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/storage_base_protection_group_all_of.py b/intersight/model/storage_base_protection_group_all_of.py index b9e1349e4c..151b709525 100644 --- a/intersight/model/storage_base_protection_group_all_of.py +++ b/intersight/model/storage_base_protection_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/storage_base_protection_group_snapshot.py b/intersight/model/storage_base_protection_group_snapshot.py index a11b6a9eba..0a549581c1 100644 --- a/intersight/model/storage_base_protection_group_snapshot.py +++ b/intersight/model/storage_base_protection_group_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/storage_base_protection_group_snapshot_all_of.py b/intersight/model/storage_base_protection_group_snapshot_all_of.py index 09a99b224b..f80dbccf8a 100644 --- a/intersight/model/storage_base_protection_group_snapshot_all_of.py +++ b/intersight/model/storage_base_protection_group_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/storage_base_raid_group.py b/intersight/model/storage_base_raid_group.py index 8683d3b695..befef48ad7 100644 --- a/intersight/model/storage_base_raid_group.py +++ b/intersight/model/storage_base_raid_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/storage_base_raid_group_all_of.py b/intersight/model/storage_base_raid_group_all_of.py index b2d740f345..43e987b420 100644 --- a/intersight/model/storage_base_raid_group_all_of.py +++ b/intersight/model/storage_base_raid_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/storage_base_replication_blackout.py b/intersight/model/storage_base_replication_blackout.py index a4f09ba252..5bf4bd30df 100644 --- a/intersight/model/storage_base_replication_blackout.py +++ b/intersight/model/storage_base_replication_blackout.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_replication_blackout_all_of.py b/intersight/model/storage_base_replication_blackout_all_of.py index ed72293481..e5b0122764 100644 --- a/intersight/model/storage_base_replication_blackout_all_of.py +++ b/intersight/model/storage_base_replication_blackout_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_replication_schedule.py b/intersight/model/storage_base_replication_schedule.py index 45b4d66d05..a3bb798264 100644 --- a/intersight/model/storage_base_replication_schedule.py +++ b/intersight/model/storage_base_replication_schedule.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_replication_schedule_all_of.py b/intersight/model/storage_base_replication_schedule_all_of.py index b6e6811e83..7585b9eb9c 100644 --- a/intersight/model/storage_base_replication_schedule_all_of.py +++ b/intersight/model/storage_base_replication_schedule_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_snapshot.py b/intersight/model/storage_base_snapshot.py index 36280f2a8b..5f17f8b1c0 100644 --- a/intersight/model/storage_base_snapshot.py +++ b/intersight/model/storage_base_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/storage_base_snapshot_all_of.py b/intersight/model/storage_base_snapshot_all_of.py index 53e86f897d..7aa6d46170 100644 --- a/intersight/model/storage_base_snapshot_all_of.py +++ b/intersight/model/storage_base_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/storage_base_snapshot_schedule.py b/intersight/model/storage_base_snapshot_schedule.py index 1a8f27341d..1300930b53 100644 --- a/intersight/model/storage_base_snapshot_schedule.py +++ b/intersight/model/storage_base_snapshot_schedule.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_snapshot_schedule_all_of.py b/intersight/model/storage_base_snapshot_schedule_all_of.py index 51487b1669..0303158854 100644 --- a/intersight/model/storage_base_snapshot_schedule_all_of.py +++ b/intersight/model/storage_base_snapshot_schedule_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_storage_container.py b/intersight/model/storage_base_storage_container.py index ba3a3e82ae..e87edf3473 100644 --- a/intersight/model/storage_base_storage_container.py +++ b/intersight/model/storage_base_storage_container.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_storage_container_all_of.py b/intersight/model/storage_base_storage_container_all_of.py index d1e9c58901..4a466bc300 100644 --- a/intersight/model/storage_base_storage_container_all_of.py +++ b/intersight/model/storage_base_storage_container_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_tenant.py b/intersight/model/storage_base_tenant.py index dd002a8ee8..a9bec51143 100644 --- a/intersight/model/storage_base_tenant.py +++ b/intersight/model/storage_base_tenant.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_tenant_all_of.py b/intersight/model/storage_base_tenant_all_of.py index 0990238c9f..33c38c2a8c 100644 --- a/intersight/model/storage_base_tenant_all_of.py +++ b/intersight/model/storage_base_tenant_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_base_volume.py b/intersight/model/storage_base_volume.py index b48b427951..a057acb38d 100644 --- a/intersight/model/storage_base_volume.py +++ b/intersight/model/storage_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/storage_base_volume_all_of.py b/intersight/model/storage_base_volume_all_of.py index eca6851ff8..6ff17dfb73 100644 --- a/intersight/model/storage_base_volume_all_of.py +++ b/intersight/model/storage_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/storage_controller.py b/intersight/model/storage_controller.py index 77ec763a35..57713ff44d 100644 --- a/intersight/model/storage_controller.py +++ b/intersight/model/storage_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/storage_controller_all_of.py b/intersight/model/storage_controller_all_of.py index b6911da99b..db89d97035 100644 --- a/intersight/model/storage_controller_all_of.py +++ b/intersight/model/storage_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/storage_controller_list.py b/intersight/model/storage_controller_list.py index ee4301186c..ac82f8964c 100644 --- a/intersight/model/storage_controller_list.py +++ b/intersight/model/storage_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/storage_controller_list_all_of.py b/intersight/model/storage_controller_list_all_of.py index 690e86f7bb..1fb39b58b2 100644 --- a/intersight/model/storage_controller_list_all_of.py +++ b/intersight/model/storage_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/storage_controller_relationship.py b/intersight/model/storage_controller_relationship.py index 0ceea60914..05bb8ae97d 100644 --- a/intersight/model/storage_controller_relationship.py +++ b/intersight/model/storage_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 """ @@ -98,6 +98,8 @@ class StorageControllerRelationship(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 StorageControllerRelationship(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 StorageControllerRelationship(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 StorageControllerRelationship(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 StorageControllerRelationship(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 StorageControllerRelationship(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 StorageControllerRelationship(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 StorageControllerRelationship(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 StorageControllerRelationship(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 StorageControllerRelationship(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/storage_controller_response.py b/intersight/model/storage_controller_response.py index f28f5c7077..e7947ef4ac 100644 --- a/intersight/model/storage_controller_response.py +++ b/intersight/model/storage_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/storage_disk_group.py b/intersight/model/storage_disk_group.py index 6c1edaef0b..299714a5b9 100644 --- a/intersight/model/storage_disk_group.py +++ b/intersight/model/storage_disk_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/storage_disk_group_all_of.py b/intersight/model/storage_disk_group_all_of.py index 8599135afc..4a66d9d410 100644 --- a/intersight/model/storage_disk_group_all_of.py +++ b/intersight/model/storage_disk_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/storage_disk_group_list.py b/intersight/model/storage_disk_group_list.py index c21ca43e70..1d09d56306 100644 --- a/intersight/model/storage_disk_group_list.py +++ b/intersight/model/storage_disk_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/storage_disk_group_list_all_of.py b/intersight/model/storage_disk_group_list_all_of.py index 3711436782..c551a21398 100644 --- a/intersight/model/storage_disk_group_list_all_of.py +++ b/intersight/model/storage_disk_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/storage_disk_group_relationship.py b/intersight/model/storage_disk_group_relationship.py index ad4cdd5fb0..dd632ef418 100644 --- a/intersight/model/storage_disk_group_relationship.py +++ b/intersight/model/storage_disk_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 """ @@ -82,6 +82,8 @@ class StorageDiskGroupRelationship(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 StorageDiskGroupRelationship(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 StorageDiskGroupRelationship(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 StorageDiskGroupRelationship(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 StorageDiskGroupRelationship(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 StorageDiskGroupRelationship(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 StorageDiskGroupRelationship(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 StorageDiskGroupRelationship(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 StorageDiskGroupRelationship(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 StorageDiskGroupRelationship(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/storage_disk_group_response.py b/intersight/model/storage_disk_group_response.py index 8dfda9bd81..c5aa0b08f3 100644 --- a/intersight/model/storage_disk_group_response.py +++ b/intersight/model/storage_disk_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/storage_disk_slot.py b/intersight/model/storage_disk_slot.py index 3343d9b3cd..27ef34cb34 100644 --- a/intersight/model/storage_disk_slot.py +++ b/intersight/model/storage_disk_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/storage_disk_slot_all_of.py b/intersight/model/storage_disk_slot_all_of.py index f898aadd98..2f5817395c 100644 --- a/intersight/model/storage_disk_slot_all_of.py +++ b/intersight/model/storage_disk_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/storage_disk_slot_list.py b/intersight/model/storage_disk_slot_list.py index 1814dc314e..e01addc588 100644 --- a/intersight/model/storage_disk_slot_list.py +++ b/intersight/model/storage_disk_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/storage_disk_slot_list_all_of.py b/intersight/model/storage_disk_slot_list_all_of.py index 06bc61f637..87269821d6 100644 --- a/intersight/model/storage_disk_slot_list_all_of.py +++ b/intersight/model/storage_disk_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/storage_disk_slot_relationship.py b/intersight/model/storage_disk_slot_relationship.py index 46b8a16d0a..550300e4e7 100644 --- a/intersight/model/storage_disk_slot_relationship.py +++ b/intersight/model/storage_disk_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 StorageDiskSlotRelationship(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 StorageDiskSlotRelationship(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 StorageDiskSlotRelationship(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 StorageDiskSlotRelationship(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 StorageDiskSlotRelationship(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 StorageDiskSlotRelationship(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 StorageDiskSlotRelationship(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 StorageDiskSlotRelationship(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 StorageDiskSlotRelationship(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 StorageDiskSlotRelationship(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/storage_disk_slot_response.py b/intersight/model/storage_disk_slot_response.py index 6ffeee7e48..708c31757b 100644 --- a/intersight/model/storage_disk_slot_response.py +++ b/intersight/model/storage_disk_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/storage_drive_group.py b/intersight/model/storage_drive_group.py index 6615038783..e97d950bed 100644 --- a/intersight/model/storage_drive_group.py +++ b/intersight/model/storage_drive_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/storage_drive_group_all_of.py b/intersight/model/storage_drive_group_all_of.py index 36bfa364c5..71331e4dcc 100644 --- a/intersight/model/storage_drive_group_all_of.py +++ b/intersight/model/storage_drive_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/storage_drive_group_list.py b/intersight/model/storage_drive_group_list.py index 474b12f8c7..99100b4df6 100644 --- a/intersight/model/storage_drive_group_list.py +++ b/intersight/model/storage_drive_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/storage_drive_group_list_all_of.py b/intersight/model/storage_drive_group_list_all_of.py index 37a0d290df..692b2cdbc0 100644 --- a/intersight/model/storage_drive_group_list_all_of.py +++ b/intersight/model/storage_drive_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/storage_drive_group_relationship.py b/intersight/model/storage_drive_group_relationship.py index 66934b16e7..97150a660a 100644 --- a/intersight/model/storage_drive_group_relationship.py +++ b/intersight/model/storage_drive_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 """ @@ -93,6 +93,8 @@ class StorageDriveGroupRelationship(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 StorageDriveGroupRelationship(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 StorageDriveGroupRelationship(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 StorageDriveGroupRelationship(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 StorageDriveGroupRelationship(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 StorageDriveGroupRelationship(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 StorageDriveGroupRelationship(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 StorageDriveGroupRelationship(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 StorageDriveGroupRelationship(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 StorageDriveGroupRelationship(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/storage_drive_group_response.py b/intersight/model/storage_drive_group_response.py index 82062970c5..35f5a07e10 100644 --- a/intersight/model/storage_drive_group_response.py +++ b/intersight/model/storage_drive_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/storage_enclosure.py b/intersight/model/storage_enclosure.py index c0055d6222..799f3b1038 100644 --- a/intersight/model/storage_enclosure.py +++ b/intersight/model/storage_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/storage_enclosure_all_of.py b/intersight/model/storage_enclosure_all_of.py index ee81be4b29..3c78dcdbbb 100644 --- a/intersight/model/storage_enclosure_all_of.py +++ b/intersight/model/storage_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/storage_enclosure_disk.py b/intersight/model/storage_enclosure_disk.py index ee099f9da7..39412b6f77 100644 --- a/intersight/model/storage_enclosure_disk.py +++ b/intersight/model/storage_enclosure_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/storage_enclosure_disk_all_of.py b/intersight/model/storage_enclosure_disk_all_of.py index 69a6f4967f..8b319c3008 100644 --- a/intersight/model/storage_enclosure_disk_all_of.py +++ b/intersight/model/storage_enclosure_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/storage_enclosure_disk_list.py b/intersight/model/storage_enclosure_disk_list.py index a094d95812..8d66c556f1 100644 --- a/intersight/model/storage_enclosure_disk_list.py +++ b/intersight/model/storage_enclosure_disk_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/storage_enclosure_disk_list_all_of.py b/intersight/model/storage_enclosure_disk_list_all_of.py index cbac9a112d..2992512515 100644 --- a/intersight/model/storage_enclosure_disk_list_all_of.py +++ b/intersight/model/storage_enclosure_disk_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/storage_enclosure_disk_relationship.py b/intersight/model/storage_enclosure_disk_relationship.py index 8534820660..3319aa32d7 100644 --- a/intersight/model/storage_enclosure_disk_relationship.py +++ b/intersight/model/storage_enclosure_disk_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 StorageEnclosureDiskRelationship(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 StorageEnclosureDiskRelationship(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 StorageEnclosureDiskRelationship(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 StorageEnclosureDiskRelationship(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 StorageEnclosureDiskRelationship(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 StorageEnclosureDiskRelationship(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 StorageEnclosureDiskRelationship(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 StorageEnclosureDiskRelationship(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 StorageEnclosureDiskRelationship(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 StorageEnclosureDiskRelationship(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/storage_enclosure_disk_response.py b/intersight/model/storage_enclosure_disk_response.py index 2d0bdf488f..b693e108f3 100644 --- a/intersight/model/storage_enclosure_disk_response.py +++ b/intersight/model/storage_enclosure_disk_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/storage_enclosure_disk_slot_ep.py b/intersight/model/storage_enclosure_disk_slot_ep.py index af9b153fb0..a8e74411bd 100644 --- a/intersight/model/storage_enclosure_disk_slot_ep.py +++ b/intersight/model/storage_enclosure_disk_slot_ep.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_enclosure_disk_slot_ep_all_of.py b/intersight/model/storage_enclosure_disk_slot_ep_all_of.py index 35b9c62546..26ddb2bc14 100644 --- a/intersight/model/storage_enclosure_disk_slot_ep_all_of.py +++ b/intersight/model/storage_enclosure_disk_slot_ep_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_enclosure_disk_slot_ep_list.py b/intersight/model/storage_enclosure_disk_slot_ep_list.py index d75471a21e..0086ccd19d 100644 --- a/intersight/model/storage_enclosure_disk_slot_ep_list.py +++ b/intersight/model/storage_enclosure_disk_slot_ep_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/storage_enclosure_disk_slot_ep_list_all_of.py b/intersight/model/storage_enclosure_disk_slot_ep_list_all_of.py index 7b8834c61d..5951bbae3e 100644 --- a/intersight/model/storage_enclosure_disk_slot_ep_list_all_of.py +++ b/intersight/model/storage_enclosure_disk_slot_ep_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/storage_enclosure_disk_slot_ep_relationship.py b/intersight/model/storage_enclosure_disk_slot_ep_relationship.py index fd03b4df26..3d599ada69 100644 --- a/intersight/model/storage_enclosure_disk_slot_ep_relationship.py +++ b/intersight/model/storage_enclosure_disk_slot_ep_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 StorageEnclosureDiskSlotEpRelationship(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 StorageEnclosureDiskSlotEpRelationship(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 StorageEnclosureDiskSlotEpRelationship(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 StorageEnclosureDiskSlotEpRelationship(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 StorageEnclosureDiskSlotEpRelationship(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 StorageEnclosureDiskSlotEpRelationship(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 StorageEnclosureDiskSlotEpRelationship(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 StorageEnclosureDiskSlotEpRelationship(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 StorageEnclosureDiskSlotEpRelationship(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 StorageEnclosureDiskSlotEpRelationship(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/storage_enclosure_disk_slot_ep_response.py b/intersight/model/storage_enclosure_disk_slot_ep_response.py index 64948393ba..62a3d51a93 100644 --- a/intersight/model/storage_enclosure_disk_slot_ep_response.py +++ b/intersight/model/storage_enclosure_disk_slot_ep_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/storage_enclosure_list.py b/intersight/model/storage_enclosure_list.py index 013a35846f..8b1f6a9002 100644 --- a/intersight/model/storage_enclosure_list.py +++ b/intersight/model/storage_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/storage_enclosure_list_all_of.py b/intersight/model/storage_enclosure_list_all_of.py index ec4cc9350d..0617ae06fd 100644 --- a/intersight/model/storage_enclosure_list_all_of.py +++ b/intersight/model/storage_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/storage_enclosure_relationship.py b/intersight/model/storage_enclosure_relationship.py index 167c0c88bf..1b36e3592a 100644 --- a/intersight/model/storage_enclosure_relationship.py +++ b/intersight/model/storage_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 """ @@ -90,6 +90,8 @@ class StorageEnclosureRelationship(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 StorageEnclosureRelationship(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 StorageEnclosureRelationship(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 StorageEnclosureRelationship(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 StorageEnclosureRelationship(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 StorageEnclosureRelationship(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 StorageEnclosureRelationship(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 StorageEnclosureRelationship(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 StorageEnclosureRelationship(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 StorageEnclosureRelationship(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/storage_enclosure_response.py b/intersight/model/storage_enclosure_response.py index d0c8dea95c..22ba8164c5 100644 --- a/intersight/model/storage_enclosure_response.py +++ b/intersight/model/storage_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/storage_flex_flash_controller.py b/intersight/model/storage_flex_flash_controller.py index 58bfa58407..bbea5ec3d2 100644 --- a/intersight/model/storage_flex_flash_controller.py +++ b/intersight/model/storage_flex_flash_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/storage_flex_flash_controller_all_of.py b/intersight/model/storage_flex_flash_controller_all_of.py index 3b98e18d81..b06e8e4c70 100644 --- a/intersight/model/storage_flex_flash_controller_all_of.py +++ b/intersight/model/storage_flex_flash_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/storage_flex_flash_controller_list.py b/intersight/model/storage_flex_flash_controller_list.py index 635cff749d..241b975ab8 100644 --- a/intersight/model/storage_flex_flash_controller_list.py +++ b/intersight/model/storage_flex_flash_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/storage_flex_flash_controller_list_all_of.py b/intersight/model/storage_flex_flash_controller_list_all_of.py index 6d3e9d2d0e..affed3be9e 100644 --- a/intersight/model/storage_flex_flash_controller_list_all_of.py +++ b/intersight/model/storage_flex_flash_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/storage_flex_flash_controller_props.py b/intersight/model/storage_flex_flash_controller_props.py index 812ce8ffa9..b3fbb81ed8 100644 --- a/intersight/model/storage_flex_flash_controller_props.py +++ b/intersight/model/storage_flex_flash_controller_props.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_flex_flash_controller_props_all_of.py b/intersight/model/storage_flex_flash_controller_props_all_of.py index 933288b857..b7077a583a 100644 --- a/intersight/model/storage_flex_flash_controller_props_all_of.py +++ b/intersight/model/storage_flex_flash_controller_props_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_flex_flash_controller_props_list.py b/intersight/model/storage_flex_flash_controller_props_list.py index 7ee2b1daf1..04d29d24f0 100644 --- a/intersight/model/storage_flex_flash_controller_props_list.py +++ b/intersight/model/storage_flex_flash_controller_props_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/storage_flex_flash_controller_props_list_all_of.py b/intersight/model/storage_flex_flash_controller_props_list_all_of.py index 7510208d5f..4f137baef8 100644 --- a/intersight/model/storage_flex_flash_controller_props_list_all_of.py +++ b/intersight/model/storage_flex_flash_controller_props_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/storage_flex_flash_controller_props_relationship.py b/intersight/model/storage_flex_flash_controller_props_relationship.py index 838b886f68..ffa32ecf22 100644 --- a/intersight/model/storage_flex_flash_controller_props_relationship.py +++ b/intersight/model/storage_flex_flash_controller_props_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 StorageFlexFlashControllerPropsRelationship(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 StorageFlexFlashControllerPropsRelationship(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 StorageFlexFlashControllerPropsRelationship(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 StorageFlexFlashControllerPropsRelationship(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 StorageFlexFlashControllerPropsRelationship(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 StorageFlexFlashControllerPropsRelationship(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 StorageFlexFlashControllerPropsRelationship(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 StorageFlexFlashControllerPropsRelationship(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 StorageFlexFlashControllerPropsRelationship(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 StorageFlexFlashControllerPropsRelationship(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/storage_flex_flash_controller_props_response.py b/intersight/model/storage_flex_flash_controller_props_response.py index d6f3671e50..86107bb6a2 100644 --- a/intersight/model/storage_flex_flash_controller_props_response.py +++ b/intersight/model/storage_flex_flash_controller_props_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/storage_flex_flash_controller_relationship.py b/intersight/model/storage_flex_flash_controller_relationship.py index 06c611a7ab..28f5cbc541 100644 --- a/intersight/model/storage_flex_flash_controller_relationship.py +++ b/intersight/model/storage_flex_flash_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 """ @@ -88,6 +88,8 @@ class StorageFlexFlashControllerRelationship(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 StorageFlexFlashControllerRelationship(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 StorageFlexFlashControllerRelationship(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 StorageFlexFlashControllerRelationship(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 StorageFlexFlashControllerRelationship(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 StorageFlexFlashControllerRelationship(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 StorageFlexFlashControllerRelationship(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 StorageFlexFlashControllerRelationship(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 StorageFlexFlashControllerRelationship(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 StorageFlexFlashControllerRelationship(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/storage_flex_flash_controller_response.py b/intersight/model/storage_flex_flash_controller_response.py index 6cd6f4a060..1c5e208dc1 100644 --- a/intersight/model/storage_flex_flash_controller_response.py +++ b/intersight/model/storage_flex_flash_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/storage_flex_flash_physical_drive.py b/intersight/model/storage_flex_flash_physical_drive.py index 93e4fbf466..871ac08aa7 100644 --- a/intersight/model/storage_flex_flash_physical_drive.py +++ b/intersight/model/storage_flex_flash_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/storage_flex_flash_physical_drive_all_of.py b/intersight/model/storage_flex_flash_physical_drive_all_of.py index 81c2e394a6..843611f659 100644 --- a/intersight/model/storage_flex_flash_physical_drive_all_of.py +++ b/intersight/model/storage_flex_flash_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/storage_flex_flash_physical_drive_list.py b/intersight/model/storage_flex_flash_physical_drive_list.py index a4db6e3fb2..5210ffb738 100644 --- a/intersight/model/storage_flex_flash_physical_drive_list.py +++ b/intersight/model/storage_flex_flash_physical_drive_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/storage_flex_flash_physical_drive_list_all_of.py b/intersight/model/storage_flex_flash_physical_drive_list_all_of.py index 23ef3f3a7d..45da678dbd 100644 --- a/intersight/model/storage_flex_flash_physical_drive_list_all_of.py +++ b/intersight/model/storage_flex_flash_physical_drive_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/storage_flex_flash_physical_drive_relationship.py b/intersight/model/storage_flex_flash_physical_drive_relationship.py index b8f4ad1b3c..adfa2201b1 100644 --- a/intersight/model/storage_flex_flash_physical_drive_relationship.py +++ b/intersight/model/storage_flex_flash_physical_drive_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 StorageFlexFlashPhysicalDriveRelationship(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 StorageFlexFlashPhysicalDriveRelationship(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 StorageFlexFlashPhysicalDriveRelationship(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 StorageFlexFlashPhysicalDriveRelationship(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 StorageFlexFlashPhysicalDriveRelationship(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 StorageFlexFlashPhysicalDriveRelationship(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 StorageFlexFlashPhysicalDriveRelationship(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 StorageFlexFlashPhysicalDriveRelationship(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 StorageFlexFlashPhysicalDriveRelationship(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 StorageFlexFlashPhysicalDriveRelationship(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/storage_flex_flash_physical_drive_response.py b/intersight/model/storage_flex_flash_physical_drive_response.py index 18ba354e32..af7adffe4e 100644 --- a/intersight/model/storage_flex_flash_physical_drive_response.py +++ b/intersight/model/storage_flex_flash_physical_drive_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/storage_flex_flash_virtual_drive.py b/intersight/model/storage_flex_flash_virtual_drive.py index 30e2fc9e1d..929be42c4f 100644 --- a/intersight/model/storage_flex_flash_virtual_drive.py +++ b/intersight/model/storage_flex_flash_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/storage_flex_flash_virtual_drive_all_of.py b/intersight/model/storage_flex_flash_virtual_drive_all_of.py index 4be6a35605..abc73b8662 100644 --- a/intersight/model/storage_flex_flash_virtual_drive_all_of.py +++ b/intersight/model/storage_flex_flash_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/storage_flex_flash_virtual_drive_list.py b/intersight/model/storage_flex_flash_virtual_drive_list.py index ff1413d47c..c0d4a2fddc 100644 --- a/intersight/model/storage_flex_flash_virtual_drive_list.py +++ b/intersight/model/storage_flex_flash_virtual_drive_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/storage_flex_flash_virtual_drive_list_all_of.py b/intersight/model/storage_flex_flash_virtual_drive_list_all_of.py index 44666bef76..1d8e395270 100644 --- a/intersight/model/storage_flex_flash_virtual_drive_list_all_of.py +++ b/intersight/model/storage_flex_flash_virtual_drive_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/storage_flex_flash_virtual_drive_relationship.py b/intersight/model/storage_flex_flash_virtual_drive_relationship.py index 38d5ad89d7..374eee1c00 100644 --- a/intersight/model/storage_flex_flash_virtual_drive_relationship.py +++ b/intersight/model/storage_flex_flash_virtual_drive_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 StorageFlexFlashVirtualDriveRelationship(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 StorageFlexFlashVirtualDriveRelationship(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 StorageFlexFlashVirtualDriveRelationship(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 StorageFlexFlashVirtualDriveRelationship(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 StorageFlexFlashVirtualDriveRelationship(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 StorageFlexFlashVirtualDriveRelationship(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 StorageFlexFlashVirtualDriveRelationship(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 StorageFlexFlashVirtualDriveRelationship(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 StorageFlexFlashVirtualDriveRelationship(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 StorageFlexFlashVirtualDriveRelationship(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/storage_flex_flash_virtual_drive_response.py b/intersight/model/storage_flex_flash_virtual_drive_response.py index 912676f8a8..a114dea341 100644 --- a/intersight/model/storage_flex_flash_virtual_drive_response.py +++ b/intersight/model/storage_flex_flash_virtual_drive_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/storage_flex_util_controller.py b/intersight/model/storage_flex_util_controller.py index d14187e81a..899ec5deca 100644 --- a/intersight/model/storage_flex_util_controller.py +++ b/intersight/model/storage_flex_util_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/storage_flex_util_controller_all_of.py b/intersight/model/storage_flex_util_controller_all_of.py index 2e3cb75ad3..7ad081b0d1 100644 --- a/intersight/model/storage_flex_util_controller_all_of.py +++ b/intersight/model/storage_flex_util_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/storage_flex_util_controller_list.py b/intersight/model/storage_flex_util_controller_list.py index 18efb50bea..9a6a55b1f9 100644 --- a/intersight/model/storage_flex_util_controller_list.py +++ b/intersight/model/storage_flex_util_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/storage_flex_util_controller_list_all_of.py b/intersight/model/storage_flex_util_controller_list_all_of.py index 0b07c3f14e..de0479dbd0 100644 --- a/intersight/model/storage_flex_util_controller_list_all_of.py +++ b/intersight/model/storage_flex_util_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/storage_flex_util_controller_relationship.py b/intersight/model/storage_flex_util_controller_relationship.py index 05d84d50d2..731487eca2 100644 --- a/intersight/model/storage_flex_util_controller_relationship.py +++ b/intersight/model/storage_flex_util_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 """ @@ -82,6 +82,8 @@ class StorageFlexUtilControllerRelationship(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 StorageFlexUtilControllerRelationship(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 StorageFlexUtilControllerRelationship(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 StorageFlexUtilControllerRelationship(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 StorageFlexUtilControllerRelationship(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 StorageFlexUtilControllerRelationship(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 StorageFlexUtilControllerRelationship(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 StorageFlexUtilControllerRelationship(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 StorageFlexUtilControllerRelationship(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 StorageFlexUtilControllerRelationship(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/storage_flex_util_controller_response.py b/intersight/model/storage_flex_util_controller_response.py index 08dd829597..f8833d50a7 100644 --- a/intersight/model/storage_flex_util_controller_response.py +++ b/intersight/model/storage_flex_util_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/storage_flex_util_physical_drive.py b/intersight/model/storage_flex_util_physical_drive.py index 35937ecd2c..a7a9e98bd7 100644 --- a/intersight/model/storage_flex_util_physical_drive.py +++ b/intersight/model/storage_flex_util_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/storage_flex_util_physical_drive_all_of.py b/intersight/model/storage_flex_util_physical_drive_all_of.py index 15f3d4c4c0..244ab6c1e1 100644 --- a/intersight/model/storage_flex_util_physical_drive_all_of.py +++ b/intersight/model/storage_flex_util_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/storage_flex_util_physical_drive_list.py b/intersight/model/storage_flex_util_physical_drive_list.py index d1dfe56d53..470a62c618 100644 --- a/intersight/model/storage_flex_util_physical_drive_list.py +++ b/intersight/model/storage_flex_util_physical_drive_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/storage_flex_util_physical_drive_list_all_of.py b/intersight/model/storage_flex_util_physical_drive_list_all_of.py index 5af43b633d..7d499afe16 100644 --- a/intersight/model/storage_flex_util_physical_drive_list_all_of.py +++ b/intersight/model/storage_flex_util_physical_drive_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/storage_flex_util_physical_drive_relationship.py b/intersight/model/storage_flex_util_physical_drive_relationship.py index 659ff0a4e4..3be04cfe20 100644 --- a/intersight/model/storage_flex_util_physical_drive_relationship.py +++ b/intersight/model/storage_flex_util_physical_drive_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 StorageFlexUtilPhysicalDriveRelationship(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 StorageFlexUtilPhysicalDriveRelationship(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 StorageFlexUtilPhysicalDriveRelationship(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 StorageFlexUtilPhysicalDriveRelationship(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 StorageFlexUtilPhysicalDriveRelationship(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 StorageFlexUtilPhysicalDriveRelationship(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 StorageFlexUtilPhysicalDriveRelationship(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 StorageFlexUtilPhysicalDriveRelationship(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 StorageFlexUtilPhysicalDriveRelationship(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 StorageFlexUtilPhysicalDriveRelationship(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/storage_flex_util_physical_drive_response.py b/intersight/model/storage_flex_util_physical_drive_response.py index afb504e816..9dbed2e3ef 100644 --- a/intersight/model/storage_flex_util_physical_drive_response.py +++ b/intersight/model/storage_flex_util_physical_drive_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/storage_flex_util_virtual_drive.py b/intersight/model/storage_flex_util_virtual_drive.py index cb8c9e7981..eae8adb9bc 100644 --- a/intersight/model/storage_flex_util_virtual_drive.py +++ b/intersight/model/storage_flex_util_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/storage_flex_util_virtual_drive_all_of.py b/intersight/model/storage_flex_util_virtual_drive_all_of.py index ae821dc67f..1ec147db16 100644 --- a/intersight/model/storage_flex_util_virtual_drive_all_of.py +++ b/intersight/model/storage_flex_util_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/storage_flex_util_virtual_drive_list.py b/intersight/model/storage_flex_util_virtual_drive_list.py index 3f7207a9dc..b7cac5fa25 100644 --- a/intersight/model/storage_flex_util_virtual_drive_list.py +++ b/intersight/model/storage_flex_util_virtual_drive_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/storage_flex_util_virtual_drive_list_all_of.py b/intersight/model/storage_flex_util_virtual_drive_list_all_of.py index 55d95bf41d..eddbbee3b9 100644 --- a/intersight/model/storage_flex_util_virtual_drive_list_all_of.py +++ b/intersight/model/storage_flex_util_virtual_drive_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/storage_flex_util_virtual_drive_relationship.py b/intersight/model/storage_flex_util_virtual_drive_relationship.py index f5c6682b96..f048705cc9 100644 --- a/intersight/model/storage_flex_util_virtual_drive_relationship.py +++ b/intersight/model/storage_flex_util_virtual_drive_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 StorageFlexUtilVirtualDriveRelationship(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 StorageFlexUtilVirtualDriveRelationship(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 StorageFlexUtilVirtualDriveRelationship(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 StorageFlexUtilVirtualDriveRelationship(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 StorageFlexUtilVirtualDriveRelationship(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 StorageFlexUtilVirtualDriveRelationship(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 StorageFlexUtilVirtualDriveRelationship(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 StorageFlexUtilVirtualDriveRelationship(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 StorageFlexUtilVirtualDriveRelationship(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 StorageFlexUtilVirtualDriveRelationship(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/storage_flex_util_virtual_drive_response.py b/intersight/model/storage_flex_util_virtual_drive_response.py index 907ce072e7..ca9467aea0 100644 --- a/intersight/model/storage_flex_util_virtual_drive_response.py +++ b/intersight/model/storage_flex_util_virtual_drive_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/storage_hitachi_array.py b/intersight/model/storage_hitachi_array.py index d15a0c04b7..51018b847c 100644 --- a/intersight/model/storage_hitachi_array.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_array_all_of.py b/intersight/model/storage_hitachi_array_all_of.py index abb421876d..227e319df7 100644 --- a/intersight/model/storage_hitachi_array_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_array_list.py b/intersight/model/storage_hitachi_array_list.py index f250eb16f5..dbd8dc26a5 100644 --- a/intersight/model/storage_hitachi_array_list.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_array_list_all_of.py b/intersight/model/storage_hitachi_array_list_all_of.py index f1f9091ec0..d6484c9f3d 100644 --- a/intersight/model/storage_hitachi_array_list_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_array_relationship.py b/intersight/model/storage_hitachi_array_relationship.py index 6dfbde86bb..663f7a9e86 100644 --- a/intersight/model/storage_hitachi_array_relationship.py +++ b/intersight/model/storage_hitachi_array_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 StorageHitachiArrayRelationship(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 StorageHitachiArrayRelationship(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 StorageHitachiArrayRelationship(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 StorageHitachiArrayRelationship(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 StorageHitachiArrayRelationship(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 StorageHitachiArrayRelationship(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 StorageHitachiArrayRelationship(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 StorageHitachiArrayRelationship(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 StorageHitachiArrayRelationship(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 StorageHitachiArrayRelationship(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/storage_hitachi_array_response.py b/intersight/model/storage_hitachi_array_response.py index addea3bee8..179559fabb 100644 --- a/intersight/model/storage_hitachi_array_response.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_array_utilization.py b/intersight/model/storage_hitachi_array_utilization.py index 835c73b293..1bbeb2b047 100644 --- a/intersight/model/storage_hitachi_array_utilization.py +++ b/intersight/model/storage_hitachi_array_utilization.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_hitachi_array_utilization_all_of.py b/intersight/model/storage_hitachi_array_utilization_all_of.py index 5006babd42..7042622e1b 100644 --- a/intersight/model/storage_hitachi_array_utilization_all_of.py +++ b/intersight/model/storage_hitachi_array_utilization_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_hitachi_capacity.py b/intersight/model/storage_hitachi_capacity.py index 3be72df1f1..8c38e354d4 100644 --- a/intersight/model/storage_hitachi_capacity.py +++ b/intersight/model/storage_hitachi_capacity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_hitachi_controller.py b/intersight/model/storage_hitachi_controller.py index d62fd46e09..be287d6d61 100644 --- a/intersight/model/storage_hitachi_controller.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_controller_all_of.py b/intersight/model/storage_hitachi_controller_all_of.py index 8bd926f1b3..82370ee58f 100644 --- a/intersight/model/storage_hitachi_controller_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_controller_list.py b/intersight/model/storage_hitachi_controller_list.py index d20fb1db03..5784bb7990 100644 --- a/intersight/model/storage_hitachi_controller_list.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_controller_list_all_of.py b/intersight/model/storage_hitachi_controller_list_all_of.py index 37809229b6..c5aa28e05e 100644 --- a/intersight/model/storage_hitachi_controller_list_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_controller_response.py b/intersight/model/storage_hitachi_controller_response.py index b9aba40dcc..09671ddc11 100644 --- a/intersight/model/storage_hitachi_controller_response.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_disk.py b/intersight/model/storage_hitachi_disk.py index f720cd6d2b..a6dc801679 100644 --- a/intersight/model/storage_hitachi_disk.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_disk_all_of.py b/intersight/model/storage_hitachi_disk_all_of.py index 6571cb4ef8..e88bd01095 100644 --- a/intersight/model/storage_hitachi_disk_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_disk_list.py b/intersight/model/storage_hitachi_disk_list.py index b382d15055..9c3ebff668 100644 --- a/intersight/model/storage_hitachi_disk_list.py +++ b/intersight/model/storage_hitachi_disk_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/storage_hitachi_disk_list_all_of.py b/intersight/model/storage_hitachi_disk_list_all_of.py index 0fdc6bf089..4943b244ba 100644 --- a/intersight/model/storage_hitachi_disk_list_all_of.py +++ b/intersight/model/storage_hitachi_disk_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/storage_hitachi_disk_response.py b/intersight/model/storage_hitachi_disk_response.py index fcfc800715..4ce54a7b1e 100644 --- a/intersight/model/storage_hitachi_disk_response.py +++ b/intersight/model/storage_hitachi_disk_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/storage_hitachi_host.py b/intersight/model/storage_hitachi_host.py index dff1db9422..ed1cf380ba 100644 --- a/intersight/model/storage_hitachi_host.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_host_all_of.py b/intersight/model/storage_hitachi_host_all_of.py index 571194dbcd..b4b08742fc 100644 --- a/intersight/model/storage_hitachi_host_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_host_list.py b/intersight/model/storage_hitachi_host_list.py index d255fc07f9..6151fd91db 100644 --- a/intersight/model/storage_hitachi_host_list.py +++ b/intersight/model/storage_hitachi_host_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/storage_hitachi_host_list_all_of.py b/intersight/model/storage_hitachi_host_list_all_of.py index 1b6912ef85..17ca0b5c3b 100644 --- a/intersight/model/storage_hitachi_host_list_all_of.py +++ b/intersight/model/storage_hitachi_host_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/storage_hitachi_host_lun.py b/intersight/model/storage_hitachi_host_lun.py index 9ed6d5a40d..7b39bd853a 100644 --- a/intersight/model/storage_hitachi_host_lun.py +++ b/intersight/model/storage_hitachi_host_lun.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_hitachi_host_lun_all_of.py b/intersight/model/storage_hitachi_host_lun_all_of.py index 578a39b5ba..465f83d895 100644 --- a/intersight/model/storage_hitachi_host_lun_all_of.py +++ b/intersight/model/storage_hitachi_host_lun_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_hitachi_host_lun_list.py b/intersight/model/storage_hitachi_host_lun_list.py index 020e0f9f74..bda2ea8029 100644 --- a/intersight/model/storage_hitachi_host_lun_list.py +++ b/intersight/model/storage_hitachi_host_lun_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/storage_hitachi_host_lun_list_all_of.py b/intersight/model/storage_hitachi_host_lun_list_all_of.py index e61446823d..fa4c87a74e 100644 --- a/intersight/model/storage_hitachi_host_lun_list_all_of.py +++ b/intersight/model/storage_hitachi_host_lun_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/storage_hitachi_host_lun_response.py b/intersight/model/storage_hitachi_host_lun_response.py index 9f48ac8a82..7f260f91dc 100644 --- a/intersight/model/storage_hitachi_host_lun_response.py +++ b/intersight/model/storage_hitachi_host_lun_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/storage_hitachi_host_relationship.py b/intersight/model/storage_hitachi_host_relationship.py index 368b4be956..224d3989cb 100644 --- a/intersight/model/storage_hitachi_host_relationship.py +++ b/intersight/model/storage_hitachi_host_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 StorageHitachiHostRelationship(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 StorageHitachiHostRelationship(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 StorageHitachiHostRelationship(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 StorageHitachiHostRelationship(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 StorageHitachiHostRelationship(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 StorageHitachiHostRelationship(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 StorageHitachiHostRelationship(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 StorageHitachiHostRelationship(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 StorageHitachiHostRelationship(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 StorageHitachiHostRelationship(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/storage_hitachi_host_response.py b/intersight/model/storage_hitachi_host_response.py index 80f646e9ec..82df3d1195 100644 --- a/intersight/model/storage_hitachi_host_response.py +++ b/intersight/model/storage_hitachi_host_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/storage_hitachi_initiator.py b/intersight/model/storage_hitachi_initiator.py index 472b5a4c06..892022de72 100644 --- a/intersight/model/storage_hitachi_initiator.py +++ b/intersight/model/storage_hitachi_initiator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_hitachi_initiator_all_of.py b/intersight/model/storage_hitachi_initiator_all_of.py index b2e00f768f..8e5888f7ca 100644 --- a/intersight/model/storage_hitachi_initiator_all_of.py +++ b/intersight/model/storage_hitachi_initiator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_hitachi_parity_group.py b/intersight/model/storage_hitachi_parity_group.py index 9838aa96bb..f392c26a3f 100644 --- a/intersight/model/storage_hitachi_parity_group.py +++ b/intersight/model/storage_hitachi_parity_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/storage_hitachi_parity_group_all_of.py b/intersight/model/storage_hitachi_parity_group_all_of.py index 7a755e98ad..e3347edfbf 100644 --- a/intersight/model/storage_hitachi_parity_group_all_of.py +++ b/intersight/model/storage_hitachi_parity_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/storage_hitachi_parity_group_list.py b/intersight/model/storage_hitachi_parity_group_list.py index bae87eab59..8fbe1c6313 100644 --- a/intersight/model/storage_hitachi_parity_group_list.py +++ b/intersight/model/storage_hitachi_parity_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/storage_hitachi_parity_group_list_all_of.py b/intersight/model/storage_hitachi_parity_group_list_all_of.py index 74b1f2ae65..a72191cb39 100644 --- a/intersight/model/storage_hitachi_parity_group_list_all_of.py +++ b/intersight/model/storage_hitachi_parity_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/storage_hitachi_parity_group_relationship.py b/intersight/model/storage_hitachi_parity_group_relationship.py index df6ff96e99..e1965dccc7 100644 --- a/intersight/model/storage_hitachi_parity_group_relationship.py +++ b/intersight/model/storage_hitachi_parity_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 """ @@ -89,6 +89,8 @@ class StorageHitachiParityGroupRelationship(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 StorageHitachiParityGroupRelationship(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 StorageHitachiParityGroupRelationship(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 StorageHitachiParityGroupRelationship(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 StorageHitachiParityGroupRelationship(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 StorageHitachiParityGroupRelationship(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 StorageHitachiParityGroupRelationship(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 StorageHitachiParityGroupRelationship(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 StorageHitachiParityGroupRelationship(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 StorageHitachiParityGroupRelationship(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/storage_hitachi_parity_group_response.py b/intersight/model/storage_hitachi_parity_group_response.py index a71178b412..82910d7c34 100644 --- a/intersight/model/storage_hitachi_parity_group_response.py +++ b/intersight/model/storage_hitachi_parity_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/storage_hitachi_pool.py b/intersight/model/storage_hitachi_pool.py index 8688e40887..69ed130c1c 100644 --- a/intersight/model/storage_hitachi_pool.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_pool_all_of.py b/intersight/model/storage_hitachi_pool_all_of.py index 827483923e..910adae86a 100644 --- a/intersight/model/storage_hitachi_pool_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_pool_list.py b/intersight/model/storage_hitachi_pool_list.py index 541641ae72..d00d3ee5cb 100644 --- a/intersight/model/storage_hitachi_pool_list.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_pool_list_all_of.py b/intersight/model/storage_hitachi_pool_list_all_of.py index 503d97215b..d30d390cd6 100644 --- a/intersight/model/storage_hitachi_pool_list_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_pool_relationship.py b/intersight/model/storage_hitachi_pool_relationship.py index 96591025c7..7916a66b8c 100644 --- a/intersight/model/storage_hitachi_pool_relationship.py +++ b/intersight/model/storage_hitachi_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 """ @@ -94,6 +94,8 @@ class StorageHitachiPoolRelationship(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 StorageHitachiPoolRelationship(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 StorageHitachiPoolRelationship(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 StorageHitachiPoolRelationship(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 StorageHitachiPoolRelationship(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 StorageHitachiPoolRelationship(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 StorageHitachiPoolRelationship(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 StorageHitachiPoolRelationship(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 StorageHitachiPoolRelationship(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 StorageHitachiPoolRelationship(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/storage_hitachi_pool_response.py b/intersight/model/storage_hitachi_pool_response.py index e20dbace6b..86d3f57c8c 100644 --- a/intersight/model/storage_hitachi_pool_response.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_port.py b/intersight/model/storage_hitachi_port.py index f618cbccea..fc46c29524 100644 --- a/intersight/model/storage_hitachi_port.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_port_all_of.py b/intersight/model/storage_hitachi_port_all_of.py index 6e94a81f69..bcb9d82c28 100644 --- a/intersight/model/storage_hitachi_port_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_port_list.py b/intersight/model/storage_hitachi_port_list.py index a30ab1c310..aba0e1aa21 100644 --- a/intersight/model/storage_hitachi_port_list.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_port_list_all_of.py b/intersight/model/storage_hitachi_port_list_all_of.py index b33f71c790..097fe9de1f 100644 --- a/intersight/model/storage_hitachi_port_list_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_port_response.py b/intersight/model/storage_hitachi_port_response.py index 58ff31b0b9..ce9802abd2 100644 --- a/intersight/model/storage_hitachi_port_response.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_volume.py b/intersight/model/storage_hitachi_volume.py index 6778dac65b..8031b85dc5 100644 --- a/intersight/model/storage_hitachi_volume.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_volume_all_of.py b/intersight/model/storage_hitachi_volume_all_of.py index bc5216b08a..da7d19c181 100644 --- a/intersight/model/storage_hitachi_volume_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_volume_list.py b/intersight/model/storage_hitachi_volume_list.py index 9e6505935f..1dac06d575 100644 --- a/intersight/model/storage_hitachi_volume_list.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_volume_list_all_of.py b/intersight/model/storage_hitachi_volume_list_all_of.py index cb66464a92..6dcc2af68f 100644 --- a/intersight/model/storage_hitachi_volume_list_all_of.py +++ b/intersight/model/storage_hitachi_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/storage_hitachi_volume_relationship.py b/intersight/model/storage_hitachi_volume_relationship.py index 904cae2823..5237305018 100644 --- a/intersight/model/storage_hitachi_volume_relationship.py +++ b/intersight/model/storage_hitachi_volume_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 """ @@ -117,6 +117,8 @@ class StorageHitachiVolumeRelationship(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", @@ -133,6 +135,7 @@ class StorageHitachiVolumeRelationship(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", @@ -181,9 +184,12 @@ class StorageHitachiVolumeRelationship(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", @@ -247,10 +253,6 @@ class StorageHitachiVolumeRelationship(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", @@ -259,6 +261,7 @@ class StorageHitachiVolumeRelationship(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", @@ -507,6 +510,7 @@ class StorageHitachiVolumeRelationship(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", @@ -676,6 +680,11 @@ class StorageHitachiVolumeRelationship(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", @@ -791,6 +800,7 @@ class StorageHitachiVolumeRelationship(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", @@ -822,6 +832,7 @@ class StorageHitachiVolumeRelationship(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", @@ -854,12 +865,14 @@ class StorageHitachiVolumeRelationship(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/storage_hitachi_volume_response.py b/intersight/model/storage_hitachi_volume_response.py index 1ec2f6172c..af0bd2ab9e 100644 --- a/intersight/model/storage_hitachi_volume_response.py +++ b/intersight/model/storage_hitachi_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/storage_hyper_flex_storage_container.py b/intersight/model/storage_hyper_flex_storage_container.py index 782729676e..f5ac31f3e8 100644 --- a/intersight/model/storage_hyper_flex_storage_container.py +++ b/intersight/model/storage_hyper_flex_storage_container.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_hyper_flex_storage_container_all_of.py b/intersight/model/storage_hyper_flex_storage_container_all_of.py index 2959d496a8..887430ff1d 100644 --- a/intersight/model/storage_hyper_flex_storage_container_all_of.py +++ b/intersight/model/storage_hyper_flex_storage_container_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_hyper_flex_storage_container_list.py b/intersight/model/storage_hyper_flex_storage_container_list.py index 4e9623c95e..c362ae3bfb 100644 --- a/intersight/model/storage_hyper_flex_storage_container_list.py +++ b/intersight/model/storage_hyper_flex_storage_container_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/storage_hyper_flex_storage_container_list_all_of.py b/intersight/model/storage_hyper_flex_storage_container_list_all_of.py index 4dd0ce8bce..0de0b17170 100644 --- a/intersight/model/storage_hyper_flex_storage_container_list_all_of.py +++ b/intersight/model/storage_hyper_flex_storage_container_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/storage_hyper_flex_storage_container_relationship.py b/intersight/model/storage_hyper_flex_storage_container_relationship.py index 28e0f00805..5d18c796b9 100644 --- a/intersight/model/storage_hyper_flex_storage_container_relationship.py +++ b/intersight/model/storage_hyper_flex_storage_container_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 StorageHyperFlexStorageContainerRelationship(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 StorageHyperFlexStorageContainerRelationship(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 StorageHyperFlexStorageContainerRelationship(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 StorageHyperFlexStorageContainerRelationship(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 StorageHyperFlexStorageContainerRelationship(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 StorageHyperFlexStorageContainerRelationship(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 StorageHyperFlexStorageContainerRelationship(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 StorageHyperFlexStorageContainerRelationship(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 StorageHyperFlexStorageContainerRelationship(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 StorageHyperFlexStorageContainerRelationship(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/storage_hyper_flex_storage_container_response.py b/intersight/model/storage_hyper_flex_storage_container_response.py index 0fcf61bdb6..3456ebd35f 100644 --- a/intersight/model/storage_hyper_flex_storage_container_response.py +++ b/intersight/model/storage_hyper_flex_storage_container_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/storage_hyper_flex_volume.py b/intersight/model/storage_hyper_flex_volume.py index c2b32e6f2e..9f9bd7991f 100644 --- a/intersight/model/storage_hyper_flex_volume.py +++ b/intersight/model/storage_hyper_flex_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/storage_hyper_flex_volume_all_of.py b/intersight/model/storage_hyper_flex_volume_all_of.py index a279128676..734555f36d 100644 --- a/intersight/model/storage_hyper_flex_volume_all_of.py +++ b/intersight/model/storage_hyper_flex_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/storage_hyper_flex_volume_list.py b/intersight/model/storage_hyper_flex_volume_list.py index 36fa5ed71f..fd1e5dc658 100644 --- a/intersight/model/storage_hyper_flex_volume_list.py +++ b/intersight/model/storage_hyper_flex_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/storage_hyper_flex_volume_list_all_of.py b/intersight/model/storage_hyper_flex_volume_list_all_of.py index 02c008c1c5..a23f9f9b9b 100644 --- a/intersight/model/storage_hyper_flex_volume_list_all_of.py +++ b/intersight/model/storage_hyper_flex_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/storage_hyper_flex_volume_relationship.py b/intersight/model/storage_hyper_flex_volume_relationship.py index ce09795bbb..212dbe13cb 100644 --- a/intersight/model/storage_hyper_flex_volume_relationship.py +++ b/intersight/model/storage_hyper_flex_volume_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 StorageHyperFlexVolumeRelationship(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 StorageHyperFlexVolumeRelationship(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 StorageHyperFlexVolumeRelationship(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 StorageHyperFlexVolumeRelationship(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 StorageHyperFlexVolumeRelationship(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 StorageHyperFlexVolumeRelationship(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 StorageHyperFlexVolumeRelationship(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 StorageHyperFlexVolumeRelationship(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 StorageHyperFlexVolumeRelationship(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 StorageHyperFlexVolumeRelationship(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/storage_hyper_flex_volume_response.py b/intersight/model/storage_hyper_flex_volume_response.py index 9d60c32ed8..e080de467a 100644 --- a/intersight/model/storage_hyper_flex_volume_response.py +++ b/intersight/model/storage_hyper_flex_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/storage_initiator.py b/intersight/model/storage_initiator.py index 102c380b5e..72a8505262 100644 --- a/intersight/model/storage_initiator.py +++ b/intersight/model/storage_initiator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_item.py b/intersight/model/storage_item.py index 8632583509..03fb101cb3 100644 --- a/intersight/model/storage_item.py +++ b/intersight/model/storage_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_item_all_of.py b/intersight/model/storage_item_all_of.py index 7b479bc2a5..5302891fe5 100644 --- a/intersight/model/storage_item_all_of.py +++ b/intersight/model/storage_item_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_item_list.py b/intersight/model/storage_item_list.py index 67837ed84e..0c69de20e9 100644 --- a/intersight/model/storage_item_list.py +++ b/intersight/model/storage_item_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/storage_item_list_all_of.py b/intersight/model/storage_item_list_all_of.py index 45f9e8e430..d1ce4adc1c 100644 --- a/intersight/model/storage_item_list_all_of.py +++ b/intersight/model/storage_item_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/storage_item_relationship.py b/intersight/model/storage_item_relationship.py index f70072e710..94cb01d277 100644 --- a/intersight/model/storage_item_relationship.py +++ b/intersight/model/storage_item_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 StorageItemRelationship(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 StorageItemRelationship(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 StorageItemRelationship(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 StorageItemRelationship(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 StorageItemRelationship(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 StorageItemRelationship(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 StorageItemRelationship(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 StorageItemRelationship(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 StorageItemRelationship(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 StorageItemRelationship(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/storage_item_response.py b/intersight/model/storage_item_response.py index 5cdbce3ef2..7d4d53ff63 100644 --- a/intersight/model/storage_item_response.py +++ b/intersight/model/storage_item_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/storage_key_setting.py b/intersight/model/storage_key_setting.py index faefefe7f3..a56a8140d0 100644 --- a/intersight/model/storage_key_setting.py +++ b/intersight/model/storage_key_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/storage_key_setting_all_of.py b/intersight/model/storage_key_setting_all_of.py index a7309ab399..28c5219271 100644 --- a/intersight/model/storage_key_setting_all_of.py +++ b/intersight/model/storage_key_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/storage_local_key_setting.py b/intersight/model/storage_local_key_setting.py index bdae5e4aba..eb2a17bdd3 100644 --- a/intersight/model/storage_local_key_setting.py +++ b/intersight/model/storage_local_key_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/storage_local_key_setting_all_of.py b/intersight/model/storage_local_key_setting_all_of.py index 14b751b910..f957ef235e 100644 --- a/intersight/model/storage_local_key_setting_all_of.py +++ b/intersight/model/storage_local_key_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/storage_m2_virtual_drive_config.py b/intersight/model/storage_m2_virtual_drive_config.py index 41cd7dc724..de63791999 100644 --- a/intersight/model/storage_m2_virtual_drive_config.py +++ b/intersight/model/storage_m2_virtual_drive_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/storage_m2_virtual_drive_config_all_of.py b/intersight/model/storage_m2_virtual_drive_config_all_of.py index 378ede8f9d..be734953d8 100644 --- a/intersight/model/storage_m2_virtual_drive_config_all_of.py +++ b/intersight/model/storage_m2_virtual_drive_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/storage_manual_drive_group.py b/intersight/model/storage_manual_drive_group.py index 751e8ab1ee..5392fa6a84 100644 --- a/intersight/model/storage_manual_drive_group.py +++ b/intersight/model/storage_manual_drive_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/storage_manual_drive_group_all_of.py b/intersight/model/storage_manual_drive_group_all_of.py index 24450902e9..d5dde596ba 100644 --- a/intersight/model/storage_manual_drive_group_all_of.py +++ b/intersight/model/storage_manual_drive_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/storage_net_app_aggregate.py b/intersight/model/storage_net_app_aggregate.py index e4b2d38f0e..ba2c7f8553 100644 --- a/intersight/model/storage_net_app_aggregate.py +++ b/intersight/model/storage_net_app_aggregate.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_aggregate_all_of.py b/intersight/model/storage_net_app_aggregate_all_of.py index 7620efa690..e3b5345354 100644 --- a/intersight/model/storage_net_app_aggregate_all_of.py +++ b/intersight/model/storage_net_app_aggregate_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_aggregate_list.py b/intersight/model/storage_net_app_aggregate_list.py index a6a0d9308e..2cd2dd5515 100644 --- a/intersight/model/storage_net_app_aggregate_list.py +++ b/intersight/model/storage_net_app_aggregate_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/storage_net_app_aggregate_list_all_of.py b/intersight/model/storage_net_app_aggregate_list_all_of.py index c2b8bf5f6e..414f9208ed 100644 --- a/intersight/model/storage_net_app_aggregate_list_all_of.py +++ b/intersight/model/storage_net_app_aggregate_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/storage_net_app_aggregate_relationship.py b/intersight/model/storage_net_app_aggregate_relationship.py index c59c32f886..440938ee8b 100644 --- a/intersight/model/storage_net_app_aggregate_relationship.py +++ b/intersight/model/storage_net_app_aggregate_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 """ @@ -116,6 +116,8 @@ class StorageNetAppAggregateRelationship(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", @@ -132,6 +134,7 @@ class StorageNetAppAggregateRelationship(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", @@ -180,9 +183,12 @@ class StorageNetAppAggregateRelationship(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", @@ -246,10 +252,6 @@ class StorageNetAppAggregateRelationship(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", @@ -258,6 +260,7 @@ class StorageNetAppAggregateRelationship(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", @@ -506,6 +509,7 @@ class StorageNetAppAggregateRelationship(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", @@ -675,6 +679,11 @@ class StorageNetAppAggregateRelationship(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", @@ -790,6 +799,7 @@ class StorageNetAppAggregateRelationship(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", @@ -821,6 +831,7 @@ class StorageNetAppAggregateRelationship(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", @@ -853,12 +864,14 @@ class StorageNetAppAggregateRelationship(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/storage_net_app_aggregate_response.py b/intersight/model/storage_net_app_aggregate_response.py index 4b221b0917..af92921781 100644 --- a/intersight/model/storage_net_app_aggregate_response.py +++ b/intersight/model/storage_net_app_aggregate_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/storage_net_app_base_disk.py b/intersight/model/storage_net_app_base_disk.py index 2a6247939e..64f8f14bf0 100644 --- a/intersight/model/storage_net_app_base_disk.py +++ b/intersight/model/storage_net_app_base_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/storage_net_app_base_disk_all_of.py b/intersight/model/storage_net_app_base_disk_all_of.py index 4a53f14fab..4bba2a64af 100644 --- a/intersight/model/storage_net_app_base_disk_all_of.py +++ b/intersight/model/storage_net_app_base_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/storage_net_app_base_disk_list.py b/intersight/model/storage_net_app_base_disk_list.py index e6c12cc91d..3aa32df389 100644 --- a/intersight/model/storage_net_app_base_disk_list.py +++ b/intersight/model/storage_net_app_base_disk_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/storage_net_app_base_disk_list_all_of.py b/intersight/model/storage_net_app_base_disk_list_all_of.py index d9a045f5d9..54c0d2a698 100644 --- a/intersight/model/storage_net_app_base_disk_list_all_of.py +++ b/intersight/model/storage_net_app_base_disk_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/storage_net_app_base_disk_response.py b/intersight/model/storage_net_app_base_disk_response.py index 6ab882071e..ed332bf78d 100644 --- a/intersight/model/storage_net_app_base_disk_response.py +++ b/intersight/model/storage_net_app_base_disk_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/storage_net_app_cluster.py b/intersight/model/storage_net_app_cluster.py index 494b40945f..d8b2c818be 100644 --- a/intersight/model/storage_net_app_cluster.py +++ b/intersight/model/storage_net_app_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/storage_net_app_cluster_all_of.py b/intersight/model/storage_net_app_cluster_all_of.py index a53cc9b32e..536668ebe9 100644 --- a/intersight/model/storage_net_app_cluster_all_of.py +++ b/intersight/model/storage_net_app_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/storage_net_app_cluster_list.py b/intersight/model/storage_net_app_cluster_list.py index d238bd613b..11010b6ff7 100644 --- a/intersight/model/storage_net_app_cluster_list.py +++ b/intersight/model/storage_net_app_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/storage_net_app_cluster_list_all_of.py b/intersight/model/storage_net_app_cluster_list_all_of.py index e960192194..4f0105aea7 100644 --- a/intersight/model/storage_net_app_cluster_list_all_of.py +++ b/intersight/model/storage_net_app_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/storage_net_app_cluster_relationship.py b/intersight/model/storage_net_app_cluster_relationship.py index 5d2168621e..40391118c6 100644 --- a/intersight/model/storage_net_app_cluster_relationship.py +++ b/intersight/model/storage_net_app_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 """ @@ -78,6 +78,8 @@ class StorageNetAppClusterRelationship(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 StorageNetAppClusterRelationship(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 StorageNetAppClusterRelationship(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 StorageNetAppClusterRelationship(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 StorageNetAppClusterRelationship(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 StorageNetAppClusterRelationship(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 StorageNetAppClusterRelationship(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 StorageNetAppClusterRelationship(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 StorageNetAppClusterRelationship(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 StorageNetAppClusterRelationship(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/storage_net_app_cluster_response.py b/intersight/model/storage_net_app_cluster_response.py index e16925015e..7b144b0509 100644 --- a/intersight/model/storage_net_app_cluster_response.py +++ b/intersight/model/storage_net_app_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/storage_net_app_ethernet_port.py b/intersight/model/storage_net_app_ethernet_port.py index bcdef44a76..25175ccf66 100644 --- a/intersight/model/storage_net_app_ethernet_port.py +++ b/intersight/model/storage_net_app_ethernet_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/storage_net_app_ethernet_port_all_of.py b/intersight/model/storage_net_app_ethernet_port_all_of.py index 76adb249b8..a655236ca1 100644 --- a/intersight/model/storage_net_app_ethernet_port_all_of.py +++ b/intersight/model/storage_net_app_ethernet_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/storage_net_app_ethernet_port_list.py b/intersight/model/storage_net_app_ethernet_port_list.py index 318badf45d..0f2835455d 100644 --- a/intersight/model/storage_net_app_ethernet_port_list.py +++ b/intersight/model/storage_net_app_ethernet_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/storage_net_app_ethernet_port_list_all_of.py b/intersight/model/storage_net_app_ethernet_port_list_all_of.py index c392acdf62..8f8e977d0e 100644 --- a/intersight/model/storage_net_app_ethernet_port_list_all_of.py +++ b/intersight/model/storage_net_app_ethernet_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/storage_net_app_ethernet_port_relationship.py b/intersight/model/storage_net_app_ethernet_port_relationship.py index 1a2fbcb2a7..1d056377c0 100644 --- a/intersight/model/storage_net_app_ethernet_port_relationship.py +++ b/intersight/model/storage_net_app_ethernet_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 """ @@ -84,6 +84,8 @@ class StorageNetAppEthernetPortRelationship(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 StorageNetAppEthernetPortRelationship(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 StorageNetAppEthernetPortRelationship(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 StorageNetAppEthernetPortRelationship(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 StorageNetAppEthernetPortRelationship(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 StorageNetAppEthernetPortRelationship(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 StorageNetAppEthernetPortRelationship(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 StorageNetAppEthernetPortRelationship(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 StorageNetAppEthernetPortRelationship(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 StorageNetAppEthernetPortRelationship(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/storage_net_app_ethernet_port_response.py b/intersight/model/storage_net_app_ethernet_port_response.py index 636b7f005f..615dffb3ba 100644 --- a/intersight/model/storage_net_app_ethernet_port_response.py +++ b/intersight/model/storage_net_app_ethernet_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/storage_net_app_export_policy.py b/intersight/model/storage_net_app_export_policy.py index bb6d3d15b4..d24cabb9d5 100644 --- a/intersight/model/storage_net_app_export_policy.py +++ b/intersight/model/storage_net_app_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/storage_net_app_export_policy_all_of.py b/intersight/model/storage_net_app_export_policy_all_of.py index 678424cff6..e4fd36bcc9 100644 --- a/intersight/model/storage_net_app_export_policy_all_of.py +++ b/intersight/model/storage_net_app_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/storage_net_app_export_policy_list.py b/intersight/model/storage_net_app_export_policy_list.py index c12ae072a4..902c91eb17 100644 --- a/intersight/model/storage_net_app_export_policy_list.py +++ b/intersight/model/storage_net_app_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/storage_net_app_export_policy_list_all_of.py b/intersight/model/storage_net_app_export_policy_list_all_of.py index 85409a86e8..f95ebecc69 100644 --- a/intersight/model/storage_net_app_export_policy_list_all_of.py +++ b/intersight/model/storage_net_app_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/storage_net_app_export_policy_response.py b/intersight/model/storage_net_app_export_policy_response.py index 3fb0aebac8..9ef8e3423d 100644 --- a/intersight/model/storage_net_app_export_policy_response.py +++ b/intersight/model/storage_net_app_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/storage_net_app_export_policy_rule.py b/intersight/model/storage_net_app_export_policy_rule.py index 524bbf4153..48248d4740 100644 --- a/intersight/model/storage_net_app_export_policy_rule.py +++ b/intersight/model/storage_net_app_export_policy_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/storage_net_app_export_policy_rule_all_of.py b/intersight/model/storage_net_app_export_policy_rule_all_of.py index 8bcfbf3b1a..376869b7fa 100644 --- a/intersight/model/storage_net_app_export_policy_rule_all_of.py +++ b/intersight/model/storage_net_app_export_policy_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/storage_net_app_fc_interface.py b/intersight/model/storage_net_app_fc_interface.py index a8bf1ca2fd..8459e734c8 100644 --- a/intersight/model/storage_net_app_fc_interface.py +++ b/intersight/model/storage_net_app_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 """ diff --git a/intersight/model/storage_net_app_fc_interface_all_of.py b/intersight/model/storage_net_app_fc_interface_all_of.py index 612996e9dc..aa787121ac 100644 --- a/intersight/model/storage_net_app_fc_interface_all_of.py +++ b/intersight/model/storage_net_app_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 """ diff --git a/intersight/model/storage_net_app_fc_interface_list.py b/intersight/model/storage_net_app_fc_interface_list.py index 45be0b106d..37ace64109 100644 --- a/intersight/model/storage_net_app_fc_interface_list.py +++ b/intersight/model/storage_net_app_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/storage_net_app_fc_interface_list_all_of.py b/intersight/model/storage_net_app_fc_interface_list_all_of.py index c69d1522a0..6434601a65 100644 --- a/intersight/model/storage_net_app_fc_interface_list_all_of.py +++ b/intersight/model/storage_net_app_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/storage_net_app_fc_interface_response.py b/intersight/model/storage_net_app_fc_interface_response.py index ae4ac674b3..23e861052a 100644 --- a/intersight/model/storage_net_app_fc_interface_response.py +++ b/intersight/model/storage_net_app_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/storage_net_app_fc_port.py b/intersight/model/storage_net_app_fc_port.py index 9023c912e2..66c3275db7 100644 --- a/intersight/model/storage_net_app_fc_port.py +++ b/intersight/model/storage_net_app_fc_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/storage_net_app_fc_port_all_of.py b/intersight/model/storage_net_app_fc_port_all_of.py index 224de14c33..52a4333fc8 100644 --- a/intersight/model/storage_net_app_fc_port_all_of.py +++ b/intersight/model/storage_net_app_fc_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/storage_net_app_fc_port_list.py b/intersight/model/storage_net_app_fc_port_list.py index e475add60b..1966a2fa00 100644 --- a/intersight/model/storage_net_app_fc_port_list.py +++ b/intersight/model/storage_net_app_fc_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/storage_net_app_fc_port_list_all_of.py b/intersight/model/storage_net_app_fc_port_list_all_of.py index 04907f7f3d..a688583ccb 100644 --- a/intersight/model/storage_net_app_fc_port_list_all_of.py +++ b/intersight/model/storage_net_app_fc_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/storage_net_app_fc_port_relationship.py b/intersight/model/storage_net_app_fc_port_relationship.py index dd5e295b87..8ef3247360 100644 --- a/intersight/model/storage_net_app_fc_port_relationship.py +++ b/intersight/model/storage_net_app_fc_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 """ @@ -100,6 +100,8 @@ class StorageNetAppFcPortRelationship(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", @@ -116,6 +118,7 @@ class StorageNetAppFcPortRelationship(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", @@ -164,9 +167,12 @@ class StorageNetAppFcPortRelationship(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", @@ -230,10 +236,6 @@ class StorageNetAppFcPortRelationship(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", @@ -242,6 +244,7 @@ class StorageNetAppFcPortRelationship(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", @@ -490,6 +493,7 @@ class StorageNetAppFcPortRelationship(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", @@ -659,6 +663,11 @@ class StorageNetAppFcPortRelationship(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", @@ -774,6 +783,7 @@ class StorageNetAppFcPortRelationship(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", @@ -805,6 +815,7 @@ class StorageNetAppFcPortRelationship(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", @@ -837,12 +848,14 @@ class StorageNetAppFcPortRelationship(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/storage_net_app_fc_port_response.py b/intersight/model/storage_net_app_fc_port_response.py index faf2702981..d6a148f55a 100644 --- a/intersight/model/storage_net_app_fc_port_response.py +++ b/intersight/model/storage_net_app_fc_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/storage_net_app_initiator_group.py b/intersight/model/storage_net_app_initiator_group.py index d59ebb0370..ea432aa3dd 100644 --- a/intersight/model/storage_net_app_initiator_group.py +++ b/intersight/model/storage_net_app_initiator_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/storage_net_app_initiator_group_all_of.py b/intersight/model/storage_net_app_initiator_group_all_of.py index 38ef1712bb..f18ae78bac 100644 --- a/intersight/model/storage_net_app_initiator_group_all_of.py +++ b/intersight/model/storage_net_app_initiator_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/storage_net_app_initiator_group_list.py b/intersight/model/storage_net_app_initiator_group_list.py index cdf3cdd8cd..e5f1c5c529 100644 --- a/intersight/model/storage_net_app_initiator_group_list.py +++ b/intersight/model/storage_net_app_initiator_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/storage_net_app_initiator_group_list_all_of.py b/intersight/model/storage_net_app_initiator_group_list_all_of.py index d7dac6a390..42f7786f4e 100644 --- a/intersight/model/storage_net_app_initiator_group_list_all_of.py +++ b/intersight/model/storage_net_app_initiator_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/storage_net_app_initiator_group_relationship.py b/intersight/model/storage_net_app_initiator_group_relationship.py index 18a2e8a138..7c1e64f2ac 100644 --- a/intersight/model/storage_net_app_initiator_group_relationship.py +++ b/intersight/model/storage_net_app_initiator_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 """ @@ -83,6 +83,8 @@ class StorageNetAppInitiatorGroupRelationship(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 StorageNetAppInitiatorGroupRelationship(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 StorageNetAppInitiatorGroupRelationship(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 StorageNetAppInitiatorGroupRelationship(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 StorageNetAppInitiatorGroupRelationship(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 StorageNetAppInitiatorGroupRelationship(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 StorageNetAppInitiatorGroupRelationship(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 StorageNetAppInitiatorGroupRelationship(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 StorageNetAppInitiatorGroupRelationship(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 StorageNetAppInitiatorGroupRelationship(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/storage_net_app_initiator_group_response.py b/intersight/model/storage_net_app_initiator_group_response.py index 7f80314ba2..54f87f1db3 100644 --- a/intersight/model/storage_net_app_initiator_group_response.py +++ b/intersight/model/storage_net_app_initiator_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/storage_net_app_ip_interface.py b/intersight/model/storage_net_app_ip_interface.py index 551b85c7f1..00ca3b6c70 100644 --- a/intersight/model/storage_net_app_ip_interface.py +++ b/intersight/model/storage_net_app_ip_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/storage_net_app_ip_interface_all_of.py b/intersight/model/storage_net_app_ip_interface_all_of.py index 5b84e3386b..cc2450327c 100644 --- a/intersight/model/storage_net_app_ip_interface_all_of.py +++ b/intersight/model/storage_net_app_ip_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/storage_net_app_ip_interface_list.py b/intersight/model/storage_net_app_ip_interface_list.py index 85c58b2f10..2cadf12314 100644 --- a/intersight/model/storage_net_app_ip_interface_list.py +++ b/intersight/model/storage_net_app_ip_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/storage_net_app_ip_interface_list_all_of.py b/intersight/model/storage_net_app_ip_interface_list_all_of.py index 059bd6f322..62182e20e4 100644 --- a/intersight/model/storage_net_app_ip_interface_list_all_of.py +++ b/intersight/model/storage_net_app_ip_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/storage_net_app_ip_interface_response.py b/intersight/model/storage_net_app_ip_interface_response.py index eddfd588f7..b0a71fa378 100644 --- a/intersight/model/storage_net_app_ip_interface_response.py +++ b/intersight/model/storage_net_app_ip_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/storage_net_app_license.py b/intersight/model/storage_net_app_license.py index 9157f9bf92..101af8e793 100644 --- a/intersight/model/storage_net_app_license.py +++ b/intersight/model/storage_net_app_license.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_license_all_of.py b/intersight/model/storage_net_app_license_all_of.py index 894b5f6107..9ceffebab5 100644 --- a/intersight/model/storage_net_app_license_all_of.py +++ b/intersight/model/storage_net_app_license_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_license_list.py b/intersight/model/storage_net_app_license_list.py index 873239fb87..2905e6c901 100644 --- a/intersight/model/storage_net_app_license_list.py +++ b/intersight/model/storage_net_app_license_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/storage_net_app_license_list_all_of.py b/intersight/model/storage_net_app_license_list_all_of.py index 086852acb0..f6eba8a112 100644 --- a/intersight/model/storage_net_app_license_list_all_of.py +++ b/intersight/model/storage_net_app_license_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/storage_net_app_license_response.py b/intersight/model/storage_net_app_license_response.py index 0f4b73b6dc..cb8b853aa2 100644 --- a/intersight/model/storage_net_app_license_response.py +++ b/intersight/model/storage_net_app_license_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/storage_net_app_lun.py b/intersight/model/storage_net_app_lun.py index fc4c92c19d..98b31b798f 100644 --- a/intersight/model/storage_net_app_lun.py +++ b/intersight/model/storage_net_app_lun.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_lun_all_of.py b/intersight/model/storage_net_app_lun_all_of.py index fa02b97d61..d3710a5f2d 100644 --- a/intersight/model/storage_net_app_lun_all_of.py +++ b/intersight/model/storage_net_app_lun_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_lun_list.py b/intersight/model/storage_net_app_lun_list.py index 34087e3450..b96a31f713 100644 --- a/intersight/model/storage_net_app_lun_list.py +++ b/intersight/model/storage_net_app_lun_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/storage_net_app_lun_list_all_of.py b/intersight/model/storage_net_app_lun_list_all_of.py index 1da7e1bba3..f59e45f030 100644 --- a/intersight/model/storage_net_app_lun_list_all_of.py +++ b/intersight/model/storage_net_app_lun_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/storage_net_app_lun_map.py b/intersight/model/storage_net_app_lun_map.py index 53ec8ab7a3..5cae353a97 100644 --- a/intersight/model/storage_net_app_lun_map.py +++ b/intersight/model/storage_net_app_lun_map.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_lun_map_all_of.py b/intersight/model/storage_net_app_lun_map_all_of.py index 4d7004970f..48bee476da 100644 --- a/intersight/model/storage_net_app_lun_map_all_of.py +++ b/intersight/model/storage_net_app_lun_map_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_lun_map_list.py b/intersight/model/storage_net_app_lun_map_list.py index 5c951c6e4a..d1bcc474aa 100644 --- a/intersight/model/storage_net_app_lun_map_list.py +++ b/intersight/model/storage_net_app_lun_map_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/storage_net_app_lun_map_list_all_of.py b/intersight/model/storage_net_app_lun_map_list_all_of.py index 576d6190e9..ae82fe94ee 100644 --- a/intersight/model/storage_net_app_lun_map_list_all_of.py +++ b/intersight/model/storage_net_app_lun_map_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/storage_net_app_lun_map_response.py b/intersight/model/storage_net_app_lun_map_response.py index a2aba32b93..8c36d3114b 100644 --- a/intersight/model/storage_net_app_lun_map_response.py +++ b/intersight/model/storage_net_app_lun_map_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/storage_net_app_lun_relationship.py b/intersight/model/storage_net_app_lun_relationship.py index eda96a3d10..604f4989c8 100644 --- a/intersight/model/storage_net_app_lun_relationship.py +++ b/intersight/model/storage_net_app_lun_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 """ @@ -96,6 +96,8 @@ class StorageNetAppLunRelationship(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", @@ -112,6 +114,7 @@ class StorageNetAppLunRelationship(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", @@ -160,9 +163,12 @@ class StorageNetAppLunRelationship(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", @@ -226,10 +232,6 @@ class StorageNetAppLunRelationship(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", @@ -238,6 +240,7 @@ class StorageNetAppLunRelationship(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", @@ -486,6 +489,7 @@ class StorageNetAppLunRelationship(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", @@ -655,6 +659,11 @@ class StorageNetAppLunRelationship(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", @@ -770,6 +779,7 @@ class StorageNetAppLunRelationship(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", @@ -801,6 +811,7 @@ class StorageNetAppLunRelationship(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", @@ -833,12 +844,14 @@ class StorageNetAppLunRelationship(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/storage_net_app_lun_response.py b/intersight/model/storage_net_app_lun_response.py index fd3347351c..8f7ef30bcf 100644 --- a/intersight/model/storage_net_app_lun_response.py +++ b/intersight/model/storage_net_app_lun_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/storage_net_app_node.py b/intersight/model/storage_net_app_node.py index 5b85655c9f..13a71417f2 100644 --- a/intersight/model/storage_net_app_node.py +++ b/intersight/model/storage_net_app_node.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_node_all_of.py b/intersight/model/storage_net_app_node_all_of.py index f5ab354f75..e1647fd94b 100644 --- a/intersight/model/storage_net_app_node_all_of.py +++ b/intersight/model/storage_net_app_node_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_node_list.py b/intersight/model/storage_net_app_node_list.py index 81d1d357a3..5cd3448966 100644 --- a/intersight/model/storage_net_app_node_list.py +++ b/intersight/model/storage_net_app_node_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/storage_net_app_node_list_all_of.py b/intersight/model/storage_net_app_node_list_all_of.py index 83216d86b3..6e00a499b1 100644 --- a/intersight/model/storage_net_app_node_list_all_of.py +++ b/intersight/model/storage_net_app_node_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/storage_net_app_node_relationship.py b/intersight/model/storage_net_app_node_relationship.py index 1f7eb35dcb..720954efd4 100644 --- a/intersight/model/storage_net_app_node_relationship.py +++ b/intersight/model/storage_net_app_node_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 StorageNetAppNodeRelationship(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 StorageNetAppNodeRelationship(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 StorageNetAppNodeRelationship(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 StorageNetAppNodeRelationship(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 StorageNetAppNodeRelationship(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 StorageNetAppNodeRelationship(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 StorageNetAppNodeRelationship(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 StorageNetAppNodeRelationship(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 StorageNetAppNodeRelationship(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 StorageNetAppNodeRelationship(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/storage_net_app_node_response.py b/intersight/model/storage_net_app_node_response.py index 29b12f486f..90ada9d047 100644 --- a/intersight/model/storage_net_app_node_response.py +++ b/intersight/model/storage_net_app_node_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/storage_net_app_storage_utilization.py b/intersight/model/storage_net_app_storage_utilization.py index 1f80c694f6..409c57fe67 100644 --- a/intersight/model/storage_net_app_storage_utilization.py +++ b/intersight/model/storage_net_app_storage_utilization.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_storage_utilization_all_of.py b/intersight/model/storage_net_app_storage_utilization_all_of.py index b5e67cb231..973f8a90dd 100644 --- a/intersight/model/storage_net_app_storage_utilization_all_of.py +++ b/intersight/model/storage_net_app_storage_utilization_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_storage_vm.py b/intersight/model/storage_net_app_storage_vm.py index 1280227f75..951885160c 100644 --- a/intersight/model/storage_net_app_storage_vm.py +++ b/intersight/model/storage_net_app_storage_vm.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_storage_vm_all_of.py b/intersight/model/storage_net_app_storage_vm_all_of.py index 81e764cf37..5e5fb0a227 100644 --- a/intersight/model/storage_net_app_storage_vm_all_of.py +++ b/intersight/model/storage_net_app_storage_vm_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_net_app_storage_vm_list.py b/intersight/model/storage_net_app_storage_vm_list.py index 229d485764..132108949f 100644 --- a/intersight/model/storage_net_app_storage_vm_list.py +++ b/intersight/model/storage_net_app_storage_vm_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/storage_net_app_storage_vm_list_all_of.py b/intersight/model/storage_net_app_storage_vm_list_all_of.py index c5c630a062..d07e337878 100644 --- a/intersight/model/storage_net_app_storage_vm_list_all_of.py +++ b/intersight/model/storage_net_app_storage_vm_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/storage_net_app_storage_vm_relationship.py b/intersight/model/storage_net_app_storage_vm_relationship.py index be59f18201..8cb3c5e92c 100644 --- a/intersight/model/storage_net_app_storage_vm_relationship.py +++ b/intersight/model/storage_net_app_storage_vm_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 StorageNetAppStorageVmRelationship(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 StorageNetAppStorageVmRelationship(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 StorageNetAppStorageVmRelationship(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 StorageNetAppStorageVmRelationship(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 StorageNetAppStorageVmRelationship(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 StorageNetAppStorageVmRelationship(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 StorageNetAppStorageVmRelationship(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 StorageNetAppStorageVmRelationship(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 StorageNetAppStorageVmRelationship(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 StorageNetAppStorageVmRelationship(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/storage_net_app_storage_vm_response.py b/intersight/model/storage_net_app_storage_vm_response.py index c182a47729..cdbdbff865 100644 --- a/intersight/model/storage_net_app_storage_vm_response.py +++ b/intersight/model/storage_net_app_storage_vm_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/storage_net_app_volume.py b/intersight/model/storage_net_app_volume.py index 12e5c3ca48..16fbe9e81c 100644 --- a/intersight/model/storage_net_app_volume.py +++ b/intersight/model/storage_net_app_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/storage_net_app_volume_all_of.py b/intersight/model/storage_net_app_volume_all_of.py index 7dc9ec5707..1a1a74e71a 100644 --- a/intersight/model/storage_net_app_volume_all_of.py +++ b/intersight/model/storage_net_app_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/storage_net_app_volume_list.py b/intersight/model/storage_net_app_volume_list.py index afa5726bc4..3a935732ec 100644 --- a/intersight/model/storage_net_app_volume_list.py +++ b/intersight/model/storage_net_app_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/storage_net_app_volume_list_all_of.py b/intersight/model/storage_net_app_volume_list_all_of.py index 8cdd69ae19..6d100efbe8 100644 --- a/intersight/model/storage_net_app_volume_list_all_of.py +++ b/intersight/model/storage_net_app_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/storage_net_app_volume_relationship.py b/intersight/model/storage_net_app_volume_relationship.py index 85d9624c13..b99597ed33 100644 --- a/intersight/model/storage_net_app_volume_relationship.py +++ b/intersight/model/storage_net_app_volume_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 """ @@ -96,6 +96,8 @@ class StorageNetAppVolumeRelationship(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", @@ -112,6 +114,7 @@ class StorageNetAppVolumeRelationship(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", @@ -160,9 +163,12 @@ class StorageNetAppVolumeRelationship(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", @@ -226,10 +232,6 @@ class StorageNetAppVolumeRelationship(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", @@ -238,6 +240,7 @@ class StorageNetAppVolumeRelationship(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", @@ -486,6 +489,7 @@ class StorageNetAppVolumeRelationship(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", @@ -655,6 +659,11 @@ class StorageNetAppVolumeRelationship(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", @@ -770,6 +779,7 @@ class StorageNetAppVolumeRelationship(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", @@ -801,6 +811,7 @@ class StorageNetAppVolumeRelationship(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", @@ -833,12 +844,14 @@ class StorageNetAppVolumeRelationship(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/storage_net_app_volume_response.py b/intersight/model/storage_net_app_volume_response.py index a8dea01147..0bd7c5b6a1 100644 --- a/intersight/model/storage_net_app_volume_response.py +++ b/intersight/model/storage_net_app_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/storage_net_app_volume_snapshot.py b/intersight/model/storage_net_app_volume_snapshot.py index e4e4cd58f5..d2e1fb68f5 100644 --- a/intersight/model/storage_net_app_volume_snapshot.py +++ b/intersight/model/storage_net_app_volume_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/storage_net_app_volume_snapshot_all_of.py b/intersight/model/storage_net_app_volume_snapshot_all_of.py index 42c8eac1dd..14062ce694 100644 --- a/intersight/model/storage_net_app_volume_snapshot_all_of.py +++ b/intersight/model/storage_net_app_volume_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/storage_net_app_volume_snapshot_list.py b/intersight/model/storage_net_app_volume_snapshot_list.py index 54df499b72..4464b47714 100644 --- a/intersight/model/storage_net_app_volume_snapshot_list.py +++ b/intersight/model/storage_net_app_volume_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/storage_net_app_volume_snapshot_list_all_of.py b/intersight/model/storage_net_app_volume_snapshot_list_all_of.py index 239d467803..2e25aa6905 100644 --- a/intersight/model/storage_net_app_volume_snapshot_list_all_of.py +++ b/intersight/model/storage_net_app_volume_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/storage_net_app_volume_snapshot_response.py b/intersight/model/storage_net_app_volume_snapshot_response.py index 2cb5cd6766..3535ed0f62 100644 --- a/intersight/model/storage_net_app_volume_snapshot_response.py +++ b/intersight/model/storage_net_app_volume_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/storage_physical_disk.py b/intersight/model/storage_physical_disk.py index 3e74e44b4d..4ef9616437 100644 --- a/intersight/model/storage_physical_disk.py +++ b/intersight/model/storage_physical_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/storage_physical_disk_all_of.py b/intersight/model/storage_physical_disk_all_of.py index 2f16b289ae..b88f9fc477 100644 --- a/intersight/model/storage_physical_disk_all_of.py +++ b/intersight/model/storage_physical_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/storage_physical_disk_extension.py b/intersight/model/storage_physical_disk_extension.py index 4d177fddc0..30dee23db2 100644 --- a/intersight/model/storage_physical_disk_extension.py +++ b/intersight/model/storage_physical_disk_extension.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_physical_disk_extension_all_of.py b/intersight/model/storage_physical_disk_extension_all_of.py index f6074396ff..edf0c904d4 100644 --- a/intersight/model/storage_physical_disk_extension_all_of.py +++ b/intersight/model/storage_physical_disk_extension_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_physical_disk_extension_list.py b/intersight/model/storage_physical_disk_extension_list.py index 0806c53196..f088c02ee9 100644 --- a/intersight/model/storage_physical_disk_extension_list.py +++ b/intersight/model/storage_physical_disk_extension_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/storage_physical_disk_extension_list_all_of.py b/intersight/model/storage_physical_disk_extension_list_all_of.py index 5ed7ab16d7..ed74fa87f2 100644 --- a/intersight/model/storage_physical_disk_extension_list_all_of.py +++ b/intersight/model/storage_physical_disk_extension_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/storage_physical_disk_extension_relationship.py b/intersight/model/storage_physical_disk_extension_relationship.py index f0bd9c8602..e68c50d9b3 100644 --- a/intersight/model/storage_physical_disk_extension_relationship.py +++ b/intersight/model/storage_physical_disk_extension_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 StoragePhysicalDiskExtensionRelationship(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 StoragePhysicalDiskExtensionRelationship(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 StoragePhysicalDiskExtensionRelationship(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 StoragePhysicalDiskExtensionRelationship(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 StoragePhysicalDiskExtensionRelationship(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 StoragePhysicalDiskExtensionRelationship(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 StoragePhysicalDiskExtensionRelationship(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 StoragePhysicalDiskExtensionRelationship(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 StoragePhysicalDiskExtensionRelationship(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 StoragePhysicalDiskExtensionRelationship(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/storage_physical_disk_extension_response.py b/intersight/model/storage_physical_disk_extension_response.py index 4b92df9117..0810705020 100644 --- a/intersight/model/storage_physical_disk_extension_response.py +++ b/intersight/model/storage_physical_disk_extension_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/storage_physical_disk_list.py b/intersight/model/storage_physical_disk_list.py index 4366b60a73..6f7494f5f1 100644 --- a/intersight/model/storage_physical_disk_list.py +++ b/intersight/model/storage_physical_disk_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/storage_physical_disk_list_all_of.py b/intersight/model/storage_physical_disk_list_all_of.py index 43f772c6e2..4dee4c152c 100644 --- a/intersight/model/storage_physical_disk_list_all_of.py +++ b/intersight/model/storage_physical_disk_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/storage_physical_disk_relationship.py b/intersight/model/storage_physical_disk_relationship.py index f785211567..a9d924f64f 100644 --- a/intersight/model/storage_physical_disk_relationship.py +++ b/intersight/model/storage_physical_disk_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 StoragePhysicalDiskRelationship(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 StoragePhysicalDiskRelationship(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 StoragePhysicalDiskRelationship(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 StoragePhysicalDiskRelationship(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 StoragePhysicalDiskRelationship(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 StoragePhysicalDiskRelationship(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 StoragePhysicalDiskRelationship(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 StoragePhysicalDiskRelationship(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 StoragePhysicalDiskRelationship(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 StoragePhysicalDiskRelationship(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/storage_physical_disk_response.py b/intersight/model/storage_physical_disk_response.py index c1fecbc589..891fcb78d0 100644 --- a/intersight/model/storage_physical_disk_response.py +++ b/intersight/model/storage_physical_disk_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/storage_physical_disk_usage.py b/intersight/model/storage_physical_disk_usage.py index 3701d879a1..3e776b177d 100644 --- a/intersight/model/storage_physical_disk_usage.py +++ b/intersight/model/storage_physical_disk_usage.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_physical_disk_usage_all_of.py b/intersight/model/storage_physical_disk_usage_all_of.py index ed82c77537..0409453edd 100644 --- a/intersight/model/storage_physical_disk_usage_all_of.py +++ b/intersight/model/storage_physical_disk_usage_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_physical_disk_usage_list.py b/intersight/model/storage_physical_disk_usage_list.py index f3e1c80742..2ea11ead36 100644 --- a/intersight/model/storage_physical_disk_usage_list.py +++ b/intersight/model/storage_physical_disk_usage_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/storage_physical_disk_usage_list_all_of.py b/intersight/model/storage_physical_disk_usage_list_all_of.py index ae16bd0a28..3176892fc6 100644 --- a/intersight/model/storage_physical_disk_usage_list_all_of.py +++ b/intersight/model/storage_physical_disk_usage_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/storage_physical_disk_usage_relationship.py b/intersight/model/storage_physical_disk_usage_relationship.py index 8b6d68a56e..1d98541f0f 100644 --- a/intersight/model/storage_physical_disk_usage_relationship.py +++ b/intersight/model/storage_physical_disk_usage_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 StoragePhysicalDiskUsageRelationship(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 StoragePhysicalDiskUsageRelationship(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 StoragePhysicalDiskUsageRelationship(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 StoragePhysicalDiskUsageRelationship(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 StoragePhysicalDiskUsageRelationship(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 StoragePhysicalDiskUsageRelationship(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 StoragePhysicalDiskUsageRelationship(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 StoragePhysicalDiskUsageRelationship(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 StoragePhysicalDiskUsageRelationship(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 StoragePhysicalDiskUsageRelationship(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/storage_physical_disk_usage_response.py b/intersight/model/storage_physical_disk_usage_response.py index 81dedfdcd4..e27f0099d5 100644 --- a/intersight/model/storage_physical_disk_usage_response.py +++ b/intersight/model/storage_physical_disk_usage_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/storage_pure_array.py b/intersight/model/storage_pure_array.py index 20512e23e7..c6d28e5d84 100644 --- a/intersight/model/storage_pure_array.py +++ b/intersight/model/storage_pure_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/storage_pure_array_all_of.py b/intersight/model/storage_pure_array_all_of.py index 2fc8ae3889..c7154d1dc6 100644 --- a/intersight/model/storage_pure_array_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_array_list.py b/intersight/model/storage_pure_array_list.py index b3800dc74e..975d541884 100644 --- a/intersight/model/storage_pure_array_list.py +++ b/intersight/model/storage_pure_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/storage_pure_array_list_all_of.py b/intersight/model/storage_pure_array_list_all_of.py index 5c187e4b7f..b90c61d565 100644 --- a/intersight/model/storage_pure_array_list_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_array_relationship.py b/intersight/model/storage_pure_array_relationship.py index 386c2b7b9d..7e7997a000 100644 --- a/intersight/model/storage_pure_array_relationship.py +++ b/intersight/model/storage_pure_array_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 StoragePureArrayRelationship(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 StoragePureArrayRelationship(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 StoragePureArrayRelationship(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 StoragePureArrayRelationship(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 StoragePureArrayRelationship(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 StoragePureArrayRelationship(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 StoragePureArrayRelationship(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 StoragePureArrayRelationship(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 StoragePureArrayRelationship(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 StoragePureArrayRelationship(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/storage_pure_array_response.py b/intersight/model/storage_pure_array_response.py index 15974bb7ba..2b5a86bbc0 100644 --- a/intersight/model/storage_pure_array_response.py +++ b/intersight/model/storage_pure_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/storage_pure_array_utilization.py b/intersight/model/storage_pure_array_utilization.py index 4802436e71..d7671b4b28 100644 --- a/intersight/model/storage_pure_array_utilization.py +++ b/intersight/model/storage_pure_array_utilization.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_array_utilization_all_of.py b/intersight/model/storage_pure_array_utilization_all_of.py index d6323e16d3..8affe883b1 100644 --- a/intersight/model/storage_pure_array_utilization_all_of.py +++ b/intersight/model/storage_pure_array_utilization_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_controller.py b/intersight/model/storage_pure_controller.py index 44ada3aa01..79e089408d 100644 --- a/intersight/model/storage_pure_controller.py +++ b/intersight/model/storage_pure_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/storage_pure_controller_all_of.py b/intersight/model/storage_pure_controller_all_of.py index ecf0c422e1..39c62c4949 100644 --- a/intersight/model/storage_pure_controller_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_controller_list.py b/intersight/model/storage_pure_controller_list.py index 43c74e9c99..e89fb87391 100644 --- a/intersight/model/storage_pure_controller_list.py +++ b/intersight/model/storage_pure_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/storage_pure_controller_list_all_of.py b/intersight/model/storage_pure_controller_list_all_of.py index d634c7f4e4..926363b1f6 100644 --- a/intersight/model/storage_pure_controller_list_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_controller_relationship.py b/intersight/model/storage_pure_controller_relationship.py index 79a8950f1f..81b04f8242 100644 --- a/intersight/model/storage_pure_controller_relationship.py +++ b/intersight/model/storage_pure_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 """ @@ -95,6 +95,8 @@ class StoragePureControllerRelationship(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", @@ -111,6 +113,7 @@ class StoragePureControllerRelationship(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", @@ -159,9 +162,12 @@ class StoragePureControllerRelationship(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", @@ -225,10 +231,6 @@ class StoragePureControllerRelationship(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", @@ -237,6 +239,7 @@ class StoragePureControllerRelationship(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", @@ -485,6 +488,7 @@ class StoragePureControllerRelationship(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", @@ -654,6 +658,11 @@ class StoragePureControllerRelationship(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", @@ -769,6 +778,7 @@ class StoragePureControllerRelationship(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", @@ -800,6 +810,7 @@ class StoragePureControllerRelationship(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", @@ -832,12 +843,14 @@ class StoragePureControllerRelationship(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/storage_pure_controller_response.py b/intersight/model/storage_pure_controller_response.py index eea5e91463..747c694aef 100644 --- a/intersight/model/storage_pure_controller_response.py +++ b/intersight/model/storage_pure_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/storage_pure_disk.py b/intersight/model/storage_pure_disk.py index 8acb005483..66c9320098 100644 --- a/intersight/model/storage_pure_disk.py +++ b/intersight/model/storage_pure_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/storage_pure_disk_all_of.py b/intersight/model/storage_pure_disk_all_of.py index fa9109691d..c5134c9bab 100644 --- a/intersight/model/storage_pure_disk_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_disk_list.py b/intersight/model/storage_pure_disk_list.py index 17046705ef..004d78a504 100644 --- a/intersight/model/storage_pure_disk_list.py +++ b/intersight/model/storage_pure_disk_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/storage_pure_disk_list_all_of.py b/intersight/model/storage_pure_disk_list_all_of.py index 9bbc17bff9..45e287de99 100644 --- a/intersight/model/storage_pure_disk_list_all_of.py +++ b/intersight/model/storage_pure_disk_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/storage_pure_disk_response.py b/intersight/model/storage_pure_disk_response.py index 3eb9706e17..96b6a02ee8 100644 --- a/intersight/model/storage_pure_disk_response.py +++ b/intersight/model/storage_pure_disk_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/storage_pure_disk_utilization.py b/intersight/model/storage_pure_disk_utilization.py index c89c39c66c..d37e07b090 100644 --- a/intersight/model/storage_pure_disk_utilization.py +++ b/intersight/model/storage_pure_disk_utilization.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_host.py b/intersight/model/storage_pure_host.py index 750ec53bda..01c49d0421 100644 --- a/intersight/model/storage_pure_host.py +++ b/intersight/model/storage_pure_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/storage_pure_host_all_of.py b/intersight/model/storage_pure_host_all_of.py index bc9c9b9826..7c7ca2edd5 100644 --- a/intersight/model/storage_pure_host_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_host_group.py b/intersight/model/storage_pure_host_group.py index 84cdf98dec..252d9e99ee 100644 --- a/intersight/model/storage_pure_host_group.py +++ b/intersight/model/storage_pure_host_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/storage_pure_host_group_all_of.py b/intersight/model/storage_pure_host_group_all_of.py index 926d400d70..ecfa08645c 100644 --- a/intersight/model/storage_pure_host_group_all_of.py +++ b/intersight/model/storage_pure_host_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/storage_pure_host_group_list.py b/intersight/model/storage_pure_host_group_list.py index 20b4d87611..3faa76e504 100644 --- a/intersight/model/storage_pure_host_group_list.py +++ b/intersight/model/storage_pure_host_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/storage_pure_host_group_list_all_of.py b/intersight/model/storage_pure_host_group_list_all_of.py index 1e615ec082..1c43cf51f0 100644 --- a/intersight/model/storage_pure_host_group_list_all_of.py +++ b/intersight/model/storage_pure_host_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/storage_pure_host_group_relationship.py b/intersight/model/storage_pure_host_group_relationship.py index cdb18bb09b..fba5646ac2 100644 --- a/intersight/model/storage_pure_host_group_relationship.py +++ b/intersight/model/storage_pure_host_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 """ @@ -82,6 +82,8 @@ class StoragePureHostGroupRelationship(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 StoragePureHostGroupRelationship(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 StoragePureHostGroupRelationship(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 StoragePureHostGroupRelationship(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 StoragePureHostGroupRelationship(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 StoragePureHostGroupRelationship(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 StoragePureHostGroupRelationship(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 StoragePureHostGroupRelationship(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 StoragePureHostGroupRelationship(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 StoragePureHostGroupRelationship(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/storage_pure_host_group_response.py b/intersight/model/storage_pure_host_group_response.py index 64764b9979..4c0cf0e30d 100644 --- a/intersight/model/storage_pure_host_group_response.py +++ b/intersight/model/storage_pure_host_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/storage_pure_host_list.py b/intersight/model/storage_pure_host_list.py index e0b4d74d4c..b42d6a1f25 100644 --- a/intersight/model/storage_pure_host_list.py +++ b/intersight/model/storage_pure_host_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/storage_pure_host_list_all_of.py b/intersight/model/storage_pure_host_list_all_of.py index c988030dbf..f01a2f8068 100644 --- a/intersight/model/storage_pure_host_list_all_of.py +++ b/intersight/model/storage_pure_host_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/storage_pure_host_lun.py b/intersight/model/storage_pure_host_lun.py index 24dcc23d88..72075b171e 100644 --- a/intersight/model/storage_pure_host_lun.py +++ b/intersight/model/storage_pure_host_lun.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_host_lun_all_of.py b/intersight/model/storage_pure_host_lun_all_of.py index 454c5d94a2..048f22118d 100644 --- a/intersight/model/storage_pure_host_lun_all_of.py +++ b/intersight/model/storage_pure_host_lun_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_host_lun_list.py b/intersight/model/storage_pure_host_lun_list.py index 397f0099f8..5bf94b9dcd 100644 --- a/intersight/model/storage_pure_host_lun_list.py +++ b/intersight/model/storage_pure_host_lun_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/storage_pure_host_lun_list_all_of.py b/intersight/model/storage_pure_host_lun_list_all_of.py index cd6c51e40d..a369a694bc 100644 --- a/intersight/model/storage_pure_host_lun_list_all_of.py +++ b/intersight/model/storage_pure_host_lun_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/storage_pure_host_lun_response.py b/intersight/model/storage_pure_host_lun_response.py index 8cc3c89721..aa0ae91cd1 100644 --- a/intersight/model/storage_pure_host_lun_response.py +++ b/intersight/model/storage_pure_host_lun_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/storage_pure_host_relationship.py b/intersight/model/storage_pure_host_relationship.py index a72bb62d46..a217645424 100644 --- a/intersight/model/storage_pure_host_relationship.py +++ b/intersight/model/storage_pure_host_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 StoragePureHostRelationship(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 StoragePureHostRelationship(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 StoragePureHostRelationship(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 StoragePureHostRelationship(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 StoragePureHostRelationship(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 StoragePureHostRelationship(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 StoragePureHostRelationship(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 StoragePureHostRelationship(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 StoragePureHostRelationship(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 StoragePureHostRelationship(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/storage_pure_host_response.py b/intersight/model/storage_pure_host_response.py index 1455163e85..3439e593dd 100644 --- a/intersight/model/storage_pure_host_response.py +++ b/intersight/model/storage_pure_host_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/storage_pure_host_utilization.py b/intersight/model/storage_pure_host_utilization.py index 75aa1d9e96..97d74dfd6b 100644 --- a/intersight/model/storage_pure_host_utilization.py +++ b/intersight/model/storage_pure_host_utilization.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_port.py b/intersight/model/storage_pure_port.py index 1d07cb7d18..6ef560525a 100644 --- a/intersight/model/storage_pure_port.py +++ b/intersight/model/storage_pure_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/storage_pure_port_all_of.py b/intersight/model/storage_pure_port_all_of.py index 6b4e71e9fa..50fd1b0509 100644 --- a/intersight/model/storage_pure_port_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_port_list.py b/intersight/model/storage_pure_port_list.py index c3c90ce82c..c4311a2ba3 100644 --- a/intersight/model/storage_pure_port_list.py +++ b/intersight/model/storage_pure_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/storage_pure_port_list_all_of.py b/intersight/model/storage_pure_port_list_all_of.py index f88a1a8976..d727e66ac0 100644 --- a/intersight/model/storage_pure_port_list_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_port_response.py b/intersight/model/storage_pure_port_response.py index 39b57d7d7e..52dbc527f2 100644 --- a/intersight/model/storage_pure_port_response.py +++ b/intersight/model/storage_pure_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/storage_pure_protection_group.py b/intersight/model/storage_pure_protection_group.py index dd9298d18e..27ec9e8356 100644 --- a/intersight/model/storage_pure_protection_group.py +++ b/intersight/model/storage_pure_protection_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/storage_pure_protection_group_all_of.py b/intersight/model/storage_pure_protection_group_all_of.py index 2802b8fa10..2cb9326e58 100644 --- a/intersight/model/storage_pure_protection_group_all_of.py +++ b/intersight/model/storage_pure_protection_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/storage_pure_protection_group_list.py b/intersight/model/storage_pure_protection_group_list.py index 98baaf7736..8bc204d65a 100644 --- a/intersight/model/storage_pure_protection_group_list.py +++ b/intersight/model/storage_pure_protection_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/storage_pure_protection_group_list_all_of.py b/intersight/model/storage_pure_protection_group_list_all_of.py index b50c444ff6..711d6df094 100644 --- a/intersight/model/storage_pure_protection_group_list_all_of.py +++ b/intersight/model/storage_pure_protection_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/storage_pure_protection_group_relationship.py b/intersight/model/storage_pure_protection_group_relationship.py index f02b384a4e..933baa987e 100644 --- a/intersight/model/storage_pure_protection_group_relationship.py +++ b/intersight/model/storage_pure_protection_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 """ @@ -82,6 +82,8 @@ class StoragePureProtectionGroupRelationship(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 StoragePureProtectionGroupRelationship(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 StoragePureProtectionGroupRelationship(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 StoragePureProtectionGroupRelationship(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 StoragePureProtectionGroupRelationship(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 StoragePureProtectionGroupRelationship(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 StoragePureProtectionGroupRelationship(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 StoragePureProtectionGroupRelationship(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 StoragePureProtectionGroupRelationship(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 StoragePureProtectionGroupRelationship(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/storage_pure_protection_group_response.py b/intersight/model/storage_pure_protection_group_response.py index eb3fb044d3..6edd8e0b8b 100644 --- a/intersight/model/storage_pure_protection_group_response.py +++ b/intersight/model/storage_pure_protection_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/storage_pure_protection_group_snapshot.py b/intersight/model/storage_pure_protection_group_snapshot.py index d0571da107..59dbb1619a 100644 --- a/intersight/model/storage_pure_protection_group_snapshot.py +++ b/intersight/model/storage_pure_protection_group_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/storage_pure_protection_group_snapshot_all_of.py b/intersight/model/storage_pure_protection_group_snapshot_all_of.py index e61363a0fe..1265505c47 100644 --- a/intersight/model/storage_pure_protection_group_snapshot_all_of.py +++ b/intersight/model/storage_pure_protection_group_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/storage_pure_protection_group_snapshot_list.py b/intersight/model/storage_pure_protection_group_snapshot_list.py index 8fc749f54e..732b2c5989 100644 --- a/intersight/model/storage_pure_protection_group_snapshot_list.py +++ b/intersight/model/storage_pure_protection_group_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/storage_pure_protection_group_snapshot_list_all_of.py b/intersight/model/storage_pure_protection_group_snapshot_list_all_of.py index 412fce9d77..f9f6149a8f 100644 --- a/intersight/model/storage_pure_protection_group_snapshot_list_all_of.py +++ b/intersight/model/storage_pure_protection_group_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/storage_pure_protection_group_snapshot_relationship.py b/intersight/model/storage_pure_protection_group_snapshot_relationship.py index ceabf540dc..ff7ce2efa3 100644 --- a/intersight/model/storage_pure_protection_group_snapshot_relationship.py +++ b/intersight/model/storage_pure_protection_group_snapshot_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 StoragePureProtectionGroupSnapshotRelationship(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 StoragePureProtectionGroupSnapshotRelationship(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 StoragePureProtectionGroupSnapshotRelationship(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 StoragePureProtectionGroupSnapshotRelationship(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 StoragePureProtectionGroupSnapshotRelationship(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 StoragePureProtectionGroupSnapshotRelationship(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 StoragePureProtectionGroupSnapshotRelationship(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 StoragePureProtectionGroupSnapshotRelationship(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 StoragePureProtectionGroupSnapshotRelationship(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 StoragePureProtectionGroupSnapshotRelationship(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/storage_pure_protection_group_snapshot_response.py b/intersight/model/storage_pure_protection_group_snapshot_response.py index 971e88cc41..39cf0ef217 100644 --- a/intersight/model/storage_pure_protection_group_snapshot_response.py +++ b/intersight/model/storage_pure_protection_group_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/storage_pure_replication_blackout.py b/intersight/model/storage_pure_replication_blackout.py index fad85d1f5a..45bbb40d03 100644 --- a/intersight/model/storage_pure_replication_blackout.py +++ b/intersight/model/storage_pure_replication_blackout.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_replication_schedule.py b/intersight/model/storage_pure_replication_schedule.py index 6b46e49fda..f50af51819 100644 --- a/intersight/model/storage_pure_replication_schedule.py +++ b/intersight/model/storage_pure_replication_schedule.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_replication_schedule_all_of.py b/intersight/model/storage_pure_replication_schedule_all_of.py index 41ebb26d55..5341405d0d 100644 --- a/intersight/model/storage_pure_replication_schedule_all_of.py +++ b/intersight/model/storage_pure_replication_schedule_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_replication_schedule_list.py b/intersight/model/storage_pure_replication_schedule_list.py index 2b7d3341d9..b90279ffe3 100644 --- a/intersight/model/storage_pure_replication_schedule_list.py +++ b/intersight/model/storage_pure_replication_schedule_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/storage_pure_replication_schedule_list_all_of.py b/intersight/model/storage_pure_replication_schedule_list_all_of.py index b1e4e73a9b..b70ec9a8a0 100644 --- a/intersight/model/storage_pure_replication_schedule_list_all_of.py +++ b/intersight/model/storage_pure_replication_schedule_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/storage_pure_replication_schedule_response.py b/intersight/model/storage_pure_replication_schedule_response.py index 2870fee1d4..2c45d4f41f 100644 --- a/intersight/model/storage_pure_replication_schedule_response.py +++ b/intersight/model/storage_pure_replication_schedule_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/storage_pure_snapshot_schedule.py b/intersight/model/storage_pure_snapshot_schedule.py index 79b511a877..2fa1da9643 100644 --- a/intersight/model/storage_pure_snapshot_schedule.py +++ b/intersight/model/storage_pure_snapshot_schedule.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_snapshot_schedule_all_of.py b/intersight/model/storage_pure_snapshot_schedule_all_of.py index 040bae1754..e46bfad749 100644 --- a/intersight/model/storage_pure_snapshot_schedule_all_of.py +++ b/intersight/model/storage_pure_snapshot_schedule_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_pure_snapshot_schedule_list.py b/intersight/model/storage_pure_snapshot_schedule_list.py index c3b472de04..3511356140 100644 --- a/intersight/model/storage_pure_snapshot_schedule_list.py +++ b/intersight/model/storage_pure_snapshot_schedule_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/storage_pure_snapshot_schedule_list_all_of.py b/intersight/model/storage_pure_snapshot_schedule_list_all_of.py index a3523849be..db466c8f3b 100644 --- a/intersight/model/storage_pure_snapshot_schedule_list_all_of.py +++ b/intersight/model/storage_pure_snapshot_schedule_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/storage_pure_snapshot_schedule_response.py b/intersight/model/storage_pure_snapshot_schedule_response.py index 796a5477ae..39dd4b84dc 100644 --- a/intersight/model/storage_pure_snapshot_schedule_response.py +++ b/intersight/model/storage_pure_snapshot_schedule_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/storage_pure_volume.py b/intersight/model/storage_pure_volume.py index 0b65d5caaa..4c52b4aef6 100644 --- a/intersight/model/storage_pure_volume.py +++ b/intersight/model/storage_pure_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/storage_pure_volume_all_of.py b/intersight/model/storage_pure_volume_all_of.py index 9bea24c46c..ad3d9443f1 100644 --- a/intersight/model/storage_pure_volume_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_volume_list.py b/intersight/model/storage_pure_volume_list.py index 32fa1708e2..e8b270f3c9 100644 --- a/intersight/model/storage_pure_volume_list.py +++ b/intersight/model/storage_pure_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/storage_pure_volume_list_all_of.py b/intersight/model/storage_pure_volume_list_all_of.py index 1ee835a1bc..0937451e04 100644 --- a/intersight/model/storage_pure_volume_list_all_of.py +++ b/intersight/model/storage_pure_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/storage_pure_volume_relationship.py b/intersight/model/storage_pure_volume_relationship.py index 26a0c367e3..4162ac0a80 100644 --- a/intersight/model/storage_pure_volume_relationship.py +++ b/intersight/model/storage_pure_volume_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 StoragePureVolumeRelationship(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 StoragePureVolumeRelationship(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 StoragePureVolumeRelationship(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 StoragePureVolumeRelationship(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 StoragePureVolumeRelationship(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 StoragePureVolumeRelationship(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 StoragePureVolumeRelationship(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 StoragePureVolumeRelationship(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 StoragePureVolumeRelationship(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 StoragePureVolumeRelationship(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/storage_pure_volume_response.py b/intersight/model/storage_pure_volume_response.py index a57c143427..5e0b53d5dd 100644 --- a/intersight/model/storage_pure_volume_response.py +++ b/intersight/model/storage_pure_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/storage_pure_volume_snapshot.py b/intersight/model/storage_pure_volume_snapshot.py index b2078cfbff..c34bce327e 100644 --- a/intersight/model/storage_pure_volume_snapshot.py +++ b/intersight/model/storage_pure_volume_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/storage_pure_volume_snapshot_all_of.py b/intersight/model/storage_pure_volume_snapshot_all_of.py index 60454d30a8..776a89b810 100644 --- a/intersight/model/storage_pure_volume_snapshot_all_of.py +++ b/intersight/model/storage_pure_volume_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/storage_pure_volume_snapshot_list.py b/intersight/model/storage_pure_volume_snapshot_list.py index 28785cd5bf..f728e5852a 100644 --- a/intersight/model/storage_pure_volume_snapshot_list.py +++ b/intersight/model/storage_pure_volume_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/storage_pure_volume_snapshot_list_all_of.py b/intersight/model/storage_pure_volume_snapshot_list_all_of.py index 732a3c80ed..6626ecc43b 100644 --- a/intersight/model/storage_pure_volume_snapshot_list_all_of.py +++ b/intersight/model/storage_pure_volume_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/storage_pure_volume_snapshot_response.py b/intersight/model/storage_pure_volume_snapshot_response.py index 9ffff72829..4abead2894 100644 --- a/intersight/model/storage_pure_volume_snapshot_response.py +++ b/intersight/model/storage_pure_volume_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/storage_pure_volume_utilization.py b/intersight/model/storage_pure_volume_utilization.py index 95ed30f269..ecf1b7b095 100644 --- a/intersight/model/storage_pure_volume_utilization.py +++ b/intersight/model/storage_pure_volume_utilization.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_r0_drive.py b/intersight/model/storage_r0_drive.py index 1f232c2254..f951450c32 100644 --- a/intersight/model/storage_r0_drive.py +++ b/intersight/model/storage_r0_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/storage_r0_drive_all_of.py b/intersight/model/storage_r0_drive_all_of.py index 5f3d9d4b38..bf51acdcf4 100644 --- a/intersight/model/storage_r0_drive_all_of.py +++ b/intersight/model/storage_r0_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/storage_remote_key_setting.py b/intersight/model/storage_remote_key_setting.py index 3f3aaa1d94..72b65c7207 100644 --- a/intersight/model/storage_remote_key_setting.py +++ b/intersight/model/storage_remote_key_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/storage_remote_key_setting_all_of.py b/intersight/model/storage_remote_key_setting_all_of.py index 23103126e8..115b4ddbcc 100644 --- a/intersight/model/storage_remote_key_setting_all_of.py +++ b/intersight/model/storage_remote_key_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/storage_sas_expander.py b/intersight/model/storage_sas_expander.py index 4a1116e240..f87654bfa6 100644 --- a/intersight/model/storage_sas_expander.py +++ b/intersight/model/storage_sas_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/storage_sas_expander_all_of.py b/intersight/model/storage_sas_expander_all_of.py index 900280030e..ccefa54696 100644 --- a/intersight/model/storage_sas_expander_all_of.py +++ b/intersight/model/storage_sas_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/storage_sas_expander_list.py b/intersight/model/storage_sas_expander_list.py index ab2c1227e4..04b07d8b15 100644 --- a/intersight/model/storage_sas_expander_list.py +++ b/intersight/model/storage_sas_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/storage_sas_expander_list_all_of.py b/intersight/model/storage_sas_expander_list_all_of.py index 0e2c5afd81..767929852f 100644 --- a/intersight/model/storage_sas_expander_list_all_of.py +++ b/intersight/model/storage_sas_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/storage_sas_expander_relationship.py b/intersight/model/storage_sas_expander_relationship.py index 25e107521f..c6cb63b6f3 100644 --- a/intersight/model/storage_sas_expander_relationship.py +++ b/intersight/model/storage_sas_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 """ @@ -84,6 +84,8 @@ class StorageSasExpanderRelationship(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 StorageSasExpanderRelationship(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 StorageSasExpanderRelationship(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 StorageSasExpanderRelationship(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 StorageSasExpanderRelationship(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 StorageSasExpanderRelationship(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 StorageSasExpanderRelationship(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 StorageSasExpanderRelationship(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 StorageSasExpanderRelationship(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 StorageSasExpanderRelationship(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/storage_sas_expander_response.py b/intersight/model/storage_sas_expander_response.py index ed846b9ec5..e320f5d5e0 100644 --- a/intersight/model/storage_sas_expander_response.py +++ b/intersight/model/storage_sas_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/storage_sas_port.py b/intersight/model/storage_sas_port.py index 3ba8e6eee5..4cf000191b 100644 --- a/intersight/model/storage_sas_port.py +++ b/intersight/model/storage_sas_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/storage_sas_port_all_of.py b/intersight/model/storage_sas_port_all_of.py index 29ed0baa47..835ab8f41f 100644 --- a/intersight/model/storage_sas_port_all_of.py +++ b/intersight/model/storage_sas_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/storage_sas_port_list.py b/intersight/model/storage_sas_port_list.py index c932fc8f88..092e9a638d 100644 --- a/intersight/model/storage_sas_port_list.py +++ b/intersight/model/storage_sas_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/storage_sas_port_list_all_of.py b/intersight/model/storage_sas_port_list_all_of.py index 007ab35c89..1a453bccdc 100644 --- a/intersight/model/storage_sas_port_list_all_of.py +++ b/intersight/model/storage_sas_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/storage_sas_port_relationship.py b/intersight/model/storage_sas_port_relationship.py index 3b82db414c..fbd2213ed5 100644 --- a/intersight/model/storage_sas_port_relationship.py +++ b/intersight/model/storage_sas_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 StorageSasPortRelationship(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 StorageSasPortRelationship(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 StorageSasPortRelationship(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 StorageSasPortRelationship(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 StorageSasPortRelationship(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 StorageSasPortRelationship(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 StorageSasPortRelationship(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 StorageSasPortRelationship(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 StorageSasPortRelationship(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 StorageSasPortRelationship(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/storage_sas_port_response.py b/intersight/model/storage_sas_port_response.py index 6a13c349e0..8b98b1c2e5 100644 --- a/intersight/model/storage_sas_port_response.py +++ b/intersight/model/storage_sas_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/storage_span.py b/intersight/model/storage_span.py index 38cee51e70..e460d399b2 100644 --- a/intersight/model/storage_span.py +++ b/intersight/model/storage_span.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_span_all_of.py b/intersight/model/storage_span_all_of.py index 657a0d32c8..8e541fcc74 100644 --- a/intersight/model/storage_span_all_of.py +++ b/intersight/model/storage_span_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_span_drives.py b/intersight/model/storage_span_drives.py index 5b01624f14..d7d240bd39 100644 --- a/intersight/model/storage_span_drives.py +++ b/intersight/model/storage_span_drives.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_span_drives_all_of.py b/intersight/model/storage_span_drives_all_of.py index f8f833d0b4..5acae60b20 100644 --- a/intersight/model/storage_span_drives_all_of.py +++ b/intersight/model/storage_span_drives_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_span_list.py b/intersight/model/storage_span_list.py index 46060ff7ad..f352ff18ea 100644 --- a/intersight/model/storage_span_list.py +++ b/intersight/model/storage_span_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/storage_span_list_all_of.py b/intersight/model/storage_span_list_all_of.py index 99a5970fd6..53579fcdd8 100644 --- a/intersight/model/storage_span_list_all_of.py +++ b/intersight/model/storage_span_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/storage_span_relationship.py b/intersight/model/storage_span_relationship.py index bab508e44e..0cd5adc07e 100644 --- a/intersight/model/storage_span_relationship.py +++ b/intersight/model/storage_span_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 StorageSpanRelationship(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 StorageSpanRelationship(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 StorageSpanRelationship(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 StorageSpanRelationship(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 StorageSpanRelationship(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 StorageSpanRelationship(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 StorageSpanRelationship(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 StorageSpanRelationship(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 StorageSpanRelationship(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 StorageSpanRelationship(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/storage_span_response.py b/intersight/model/storage_span_response.py index 3602a76943..1f315964d6 100644 --- a/intersight/model/storage_span_response.py +++ b/intersight/model/storage_span_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/storage_storage_container_utilization.py b/intersight/model/storage_storage_container_utilization.py index 9048c7995b..e33fef9105 100644 --- a/intersight/model/storage_storage_container_utilization.py +++ b/intersight/model/storage_storage_container_utilization.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_storage_policy.py b/intersight/model/storage_storage_policy.py index 81c54356fc..bb659e6ace 100644 --- a/intersight/model/storage_storage_policy.py +++ b/intersight/model/storage_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/storage_storage_policy_all_of.py b/intersight/model/storage_storage_policy_all_of.py index 3114b77ea3..26a8dd6707 100644 --- a/intersight/model/storage_storage_policy_all_of.py +++ b/intersight/model/storage_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/storage_storage_policy_list.py b/intersight/model/storage_storage_policy_list.py index 44413ac6c6..564f635c64 100644 --- a/intersight/model/storage_storage_policy_list.py +++ b/intersight/model/storage_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/storage_storage_policy_list_all_of.py b/intersight/model/storage_storage_policy_list_all_of.py index 3dc0ce8082..63b250b426 100644 --- a/intersight/model/storage_storage_policy_list_all_of.py +++ b/intersight/model/storage_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/storage_storage_policy_relationship.py b/intersight/model/storage_storage_policy_relationship.py index 7e24846514..c8d9a1aa05 100644 --- a/intersight/model/storage_storage_policy_relationship.py +++ b/intersight/model/storage_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 """ @@ -87,6 +87,8 @@ class StorageStoragePolicyRelationship(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 StorageStoragePolicyRelationship(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 StorageStoragePolicyRelationship(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 StorageStoragePolicyRelationship(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 StorageStoragePolicyRelationship(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 StorageStoragePolicyRelationship(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 StorageStoragePolicyRelationship(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 StorageStoragePolicyRelationship(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 StorageStoragePolicyRelationship(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 StorageStoragePolicyRelationship(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/storage_storage_policy_response.py b/intersight/model/storage_storage_policy_response.py index 4b3d6b801f..2e9bb33507 100644 --- a/intersight/model/storage_storage_policy_response.py +++ b/intersight/model/storage_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/storage_storage_utilization.py b/intersight/model/storage_storage_utilization.py index 4530a3f123..f83e3a3d29 100644 --- a/intersight/model/storage_storage_utilization.py +++ b/intersight/model/storage_storage_utilization.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_storage_utilization_all_of.py b/intersight/model/storage_storage_utilization_all_of.py index 3e9fba395d..8dbf5ca708 100644 --- a/intersight/model/storage_storage_utilization_all_of.py +++ b/intersight/model/storage_storage_utilization_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_vd_member_ep.py b/intersight/model/storage_vd_member_ep.py index 04fd443ed3..4ad5df8413 100644 --- a/intersight/model/storage_vd_member_ep.py +++ b/intersight/model/storage_vd_member_ep.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_vd_member_ep_all_of.py b/intersight/model/storage_vd_member_ep_all_of.py index 949bd7b0f0..85eacdd27b 100644 --- a/intersight/model/storage_vd_member_ep_all_of.py +++ b/intersight/model/storage_vd_member_ep_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_vd_member_ep_list.py b/intersight/model/storage_vd_member_ep_list.py index 69d033121c..aeef4840ff 100644 --- a/intersight/model/storage_vd_member_ep_list.py +++ b/intersight/model/storage_vd_member_ep_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/storage_vd_member_ep_list_all_of.py b/intersight/model/storage_vd_member_ep_list_all_of.py index e042e4acc6..b3231602a7 100644 --- a/intersight/model/storage_vd_member_ep_list_all_of.py +++ b/intersight/model/storage_vd_member_ep_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/storage_vd_member_ep_relationship.py b/intersight/model/storage_vd_member_ep_relationship.py index 40c5ee740b..c2ddf0ef7e 100644 --- a/intersight/model/storage_vd_member_ep_relationship.py +++ b/intersight/model/storage_vd_member_ep_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 StorageVdMemberEpRelationship(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 StorageVdMemberEpRelationship(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 StorageVdMemberEpRelationship(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 StorageVdMemberEpRelationship(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 StorageVdMemberEpRelationship(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 StorageVdMemberEpRelationship(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 StorageVdMemberEpRelationship(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 StorageVdMemberEpRelationship(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 StorageVdMemberEpRelationship(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 StorageVdMemberEpRelationship(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/storage_vd_member_ep_response.py b/intersight/model/storage_vd_member_ep_response.py index 311f5707f6..829e558e50 100644 --- a/intersight/model/storage_vd_member_ep_response.py +++ b/intersight/model/storage_vd_member_ep_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/storage_virtual_drive.py b/intersight/model/storage_virtual_drive.py index 4f5137d9a9..86bbb5cbe5 100644 --- a/intersight/model/storage_virtual_drive.py +++ b/intersight/model/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/storage_virtual_drive_all_of.py b/intersight/model/storage_virtual_drive_all_of.py index 0b4a423395..16bd024a15 100644 --- a/intersight/model/storage_virtual_drive_all_of.py +++ b/intersight/model/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/storage_virtual_drive_configuration.py b/intersight/model/storage_virtual_drive_configuration.py index f514742aa4..26c8d17c66 100644 --- a/intersight/model/storage_virtual_drive_configuration.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_configuration_all_of.py b/intersight/model/storage_virtual_drive_configuration_all_of.py index a87b1e5673..93fb800466 100644 --- a/intersight/model/storage_virtual_drive_configuration_all_of.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_container.py b/intersight/model/storage_virtual_drive_container.py index 5eba3c04e4..b670453dd7 100644 --- a/intersight/model/storage_virtual_drive_container.py +++ b/intersight/model/storage_virtual_drive_container.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_virtual_drive_container_all_of.py b/intersight/model/storage_virtual_drive_container_all_of.py index e64ee74a50..8759fb9d16 100644 --- a/intersight/model/storage_virtual_drive_container_all_of.py +++ b/intersight/model/storage_virtual_drive_container_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_virtual_drive_container_list.py b/intersight/model/storage_virtual_drive_container_list.py index 22969868c1..01953d139e 100644 --- a/intersight/model/storage_virtual_drive_container_list.py +++ b/intersight/model/storage_virtual_drive_container_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/storage_virtual_drive_container_list_all_of.py b/intersight/model/storage_virtual_drive_container_list_all_of.py index d0a7d92aec..e077c3dd31 100644 --- a/intersight/model/storage_virtual_drive_container_list_all_of.py +++ b/intersight/model/storage_virtual_drive_container_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/storage_virtual_drive_container_relationship.py b/intersight/model/storage_virtual_drive_container_relationship.py index 1ae04db0b1..1ba4a0249b 100644 --- a/intersight/model/storage_virtual_drive_container_relationship.py +++ b/intersight/model/storage_virtual_drive_container_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 StorageVirtualDriveContainerRelationship(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 StorageVirtualDriveContainerRelationship(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 StorageVirtualDriveContainerRelationship(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 StorageVirtualDriveContainerRelationship(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 StorageVirtualDriveContainerRelationship(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 StorageVirtualDriveContainerRelationship(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 StorageVirtualDriveContainerRelationship(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 StorageVirtualDriveContainerRelationship(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 StorageVirtualDriveContainerRelationship(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 StorageVirtualDriveContainerRelationship(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/storage_virtual_drive_container_response.py b/intersight/model/storage_virtual_drive_container_response.py index 524819b552..f0abdadffe 100644 --- a/intersight/model/storage_virtual_drive_container_response.py +++ b/intersight/model/storage_virtual_drive_container_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/storage_virtual_drive_extension.py b/intersight/model/storage_virtual_drive_extension.py index 864603d167..a1338ca841 100644 --- a/intersight/model/storage_virtual_drive_extension.py +++ b/intersight/model/storage_virtual_drive_extension.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_virtual_drive_extension_all_of.py b/intersight/model/storage_virtual_drive_extension_all_of.py index 8057644a3e..62296e5544 100644 --- a/intersight/model/storage_virtual_drive_extension_all_of.py +++ b/intersight/model/storage_virtual_drive_extension_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/storage_virtual_drive_extension_list.py b/intersight/model/storage_virtual_drive_extension_list.py index 65f8d27149..21fcf822de 100644 --- a/intersight/model/storage_virtual_drive_extension_list.py +++ b/intersight/model/storage_virtual_drive_extension_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/storage_virtual_drive_extension_list_all_of.py b/intersight/model/storage_virtual_drive_extension_list_all_of.py index 041d72378c..6b7752ea86 100644 --- a/intersight/model/storage_virtual_drive_extension_list_all_of.py +++ b/intersight/model/storage_virtual_drive_extension_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/storage_virtual_drive_extension_relationship.py b/intersight/model/storage_virtual_drive_extension_relationship.py index 215bf03dc0..1e21def5f6 100644 --- a/intersight/model/storage_virtual_drive_extension_relationship.py +++ b/intersight/model/storage_virtual_drive_extension_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 StorageVirtualDriveExtensionRelationship(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 StorageVirtualDriveExtensionRelationship(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 StorageVirtualDriveExtensionRelationship(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 StorageVirtualDriveExtensionRelationship(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 StorageVirtualDriveExtensionRelationship(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 StorageVirtualDriveExtensionRelationship(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 StorageVirtualDriveExtensionRelationship(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 StorageVirtualDriveExtensionRelationship(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 StorageVirtualDriveExtensionRelationship(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 StorageVirtualDriveExtensionRelationship(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/storage_virtual_drive_extension_response.py b/intersight/model/storage_virtual_drive_extension_response.py index b9d401cc5c..88065b73f3 100644 --- a/intersight/model/storage_virtual_drive_extension_response.py +++ b/intersight/model/storage_virtual_drive_extension_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/storage_virtual_drive_identity.py b/intersight/model/storage_virtual_drive_identity.py index f5bb7c5f36..b07084f7b5 100644 --- a/intersight/model/storage_virtual_drive_identity.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_identity_all_of.py b/intersight/model/storage_virtual_drive_identity_all_of.py index 4e5fdb0574..e323e80e41 100644 --- a/intersight/model/storage_virtual_drive_identity_all_of.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_identity_list.py b/intersight/model/storage_virtual_drive_identity_list.py index 85fcbe9c31..d8cf10eb4f 100644 --- a/intersight/model/storage_virtual_drive_identity_list.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_identity_list_all_of.py b/intersight/model/storage_virtual_drive_identity_list_all_of.py index 7d7baf6db8..3d6091e52f 100644 --- a/intersight/model/storage_virtual_drive_identity_list_all_of.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_identity_response.py b/intersight/model/storage_virtual_drive_identity_response.py index 225bb3da13..e82a389457 100644 --- a/intersight/model/storage_virtual_drive_identity_response.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_list.py b/intersight/model/storage_virtual_drive_list.py index 217cd96779..3e2f734f7c 100644 --- a/intersight/model/storage_virtual_drive_list.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_list_all_of.py b/intersight/model/storage_virtual_drive_list_all_of.py index 2066f7bd28..c7e3c5fec5 100644 --- a/intersight/model/storage_virtual_drive_list_all_of.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_policy.py b/intersight/model/storage_virtual_drive_policy.py index 3ff98ce44f..bc88de67c3 100644 --- a/intersight/model/storage_virtual_drive_policy.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_policy_all_of.py b/intersight/model/storage_virtual_drive_policy_all_of.py index 927ba39b64..4d447c45cc 100644 --- a/intersight/model/storage_virtual_drive_policy_all_of.py +++ b/intersight/model/storage_virtual_drive_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/storage_virtual_drive_relationship.py b/intersight/model/storage_virtual_drive_relationship.py index e51ee64b1e..62ad7eddf1 100644 --- a/intersight/model/storage_virtual_drive_relationship.py +++ b/intersight/model/storage_virtual_drive_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 StorageVirtualDriveRelationship(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 StorageVirtualDriveRelationship(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 StorageVirtualDriveRelationship(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 StorageVirtualDriveRelationship(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 StorageVirtualDriveRelationship(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 StorageVirtualDriveRelationship(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 StorageVirtualDriveRelationship(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 StorageVirtualDriveRelationship(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 StorageVirtualDriveRelationship(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 StorageVirtualDriveRelationship(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/storage_virtual_drive_response.py b/intersight/model/storage_virtual_drive_response.py index 56c5628bd8..ac6ed79098 100644 --- a/intersight/model/storage_virtual_drive_response.py +++ b/intersight/model/storage_virtual_drive_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/storage_volume_utilization.py b/intersight/model/storage_volume_utilization.py index f91ad84317..0c6fa51472 100644 --- a/intersight/model/storage_volume_utilization.py +++ b/intersight/model/storage_volume_utilization.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/syslog_local_client_base.py b/intersight/model/syslog_local_client_base.py index 2e1bd1dd6f..e7c4414104 100644 --- a/intersight/model/syslog_local_client_base.py +++ b/intersight/model/syslog_local_client_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/syslog_local_client_base_all_of.py b/intersight/model/syslog_local_client_base_all_of.py index 98f86aa315..6c6cd915ff 100644 --- a/intersight/model/syslog_local_client_base_all_of.py +++ b/intersight/model/syslog_local_client_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/syslog_local_file_logging_client.py b/intersight/model/syslog_local_file_logging_client.py index 23b8f09e9a..a67b8a4d89 100644 --- a/intersight/model/syslog_local_file_logging_client.py +++ b/intersight/model/syslog_local_file_logging_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 """ diff --git a/intersight/model/syslog_policy.py b/intersight/model/syslog_policy.py index ceff91ada9..4ab1e66b19 100644 --- a/intersight/model/syslog_policy.py +++ b/intersight/model/syslog_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/syslog_policy_all_of.py b/intersight/model/syslog_policy_all_of.py index 9b2d354866..bc059c543c 100644 --- a/intersight/model/syslog_policy_all_of.py +++ b/intersight/model/syslog_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/syslog_policy_list.py b/intersight/model/syslog_policy_list.py index 2f2b2d3b46..eab2fb3bc6 100644 --- a/intersight/model/syslog_policy_list.py +++ b/intersight/model/syslog_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/syslog_policy_list_all_of.py b/intersight/model/syslog_policy_list_all_of.py index 73d9b254b7..8e93bd66e1 100644 --- a/intersight/model/syslog_policy_list_all_of.py +++ b/intersight/model/syslog_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/syslog_policy_response.py b/intersight/model/syslog_policy_response.py index c5b0eae26b..9225237f98 100644 --- a/intersight/model/syslog_policy_response.py +++ b/intersight/model/syslog_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/syslog_remote_client_base.py b/intersight/model/syslog_remote_client_base.py index f93de37a84..a4081b6848 100644 --- a/intersight/model/syslog_remote_client_base.py +++ b/intersight/model/syslog_remote_client_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/syslog_remote_client_base_all_of.py b/intersight/model/syslog_remote_client_base_all_of.py index 28268dcd73..01131e7496 100644 --- a/intersight/model/syslog_remote_client_base_all_of.py +++ b/intersight/model/syslog_remote_client_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/syslog_remote_logging_client.py b/intersight/model/syslog_remote_logging_client.py index 6baaa20529..ba43353979 100644 --- a/intersight/model/syslog_remote_logging_client.py +++ b/intersight/model/syslog_remote_logging_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 """ diff --git a/intersight/model/tam_action.py b/intersight/model/tam_action.py index a054e185d4..222952da3b 100644 --- a/intersight/model/tam_action.py +++ b/intersight/model/tam_action.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_action_all_of.py b/intersight/model/tam_action_all_of.py index 0175abfbbf..3d414409f3 100644 --- a/intersight/model/tam_action_all_of.py +++ b/intersight/model/tam_action_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_advisory_count.py b/intersight/model/tam_advisory_count.py index 3d6f80bc4d..df8543914b 100644 --- a/intersight/model/tam_advisory_count.py +++ b/intersight/model/tam_advisory_count.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_advisory_count_all_of.py b/intersight/model/tam_advisory_count_all_of.py index af27d4704e..1e086b4d42 100644 --- a/intersight/model/tam_advisory_count_all_of.py +++ b/intersight/model/tam_advisory_count_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_advisory_count_list.py b/intersight/model/tam_advisory_count_list.py index 42affe19c3..07ab87efaa 100644 --- a/intersight/model/tam_advisory_count_list.py +++ b/intersight/model/tam_advisory_count_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/tam_advisory_count_list_all_of.py b/intersight/model/tam_advisory_count_list_all_of.py index 5b5a61917d..cad7612a9f 100644 --- a/intersight/model/tam_advisory_count_list_all_of.py +++ b/intersight/model/tam_advisory_count_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/tam_advisory_count_response.py b/intersight/model/tam_advisory_count_response.py index d653d38d85..0779e540ad 100644 --- a/intersight/model/tam_advisory_count_response.py +++ b/intersight/model/tam_advisory_count_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/tam_advisory_definition.py b/intersight/model/tam_advisory_definition.py index 7a7cd9d4e7..b7ea1c299d 100644 --- a/intersight/model/tam_advisory_definition.py +++ b/intersight/model/tam_advisory_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/tam_advisory_definition_all_of.py b/intersight/model/tam_advisory_definition_all_of.py index ae35d92cb1..a9796287fa 100644 --- a/intersight/model/tam_advisory_definition_all_of.py +++ b/intersight/model/tam_advisory_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/tam_advisory_definition_list.py b/intersight/model/tam_advisory_definition_list.py index b8973c9bef..663bb57705 100644 --- a/intersight/model/tam_advisory_definition_list.py +++ b/intersight/model/tam_advisory_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/tam_advisory_definition_list_all_of.py b/intersight/model/tam_advisory_definition_list_all_of.py index 1adbe46a4b..7158a1a93d 100644 --- a/intersight/model/tam_advisory_definition_list_all_of.py +++ b/intersight/model/tam_advisory_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/tam_advisory_definition_response.py b/intersight/model/tam_advisory_definition_response.py index 1195a502b9..5742428672 100644 --- a/intersight/model/tam_advisory_definition_response.py +++ b/intersight/model/tam_advisory_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/tam_advisory_info.py b/intersight/model/tam_advisory_info.py index bda4010057..6036acc2a0 100644 --- a/intersight/model/tam_advisory_info.py +++ b/intersight/model/tam_advisory_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/tam_advisory_info_all_of.py b/intersight/model/tam_advisory_info_all_of.py index fdadded394..b233134200 100644 --- a/intersight/model/tam_advisory_info_all_of.py +++ b/intersight/model/tam_advisory_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/tam_advisory_info_list.py b/intersight/model/tam_advisory_info_list.py index 4e1b8f1e08..828543fd02 100644 --- a/intersight/model/tam_advisory_info_list.py +++ b/intersight/model/tam_advisory_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/tam_advisory_info_list_all_of.py b/intersight/model/tam_advisory_info_list_all_of.py index 93f0a99fd0..e808773296 100644 --- a/intersight/model/tam_advisory_info_list_all_of.py +++ b/intersight/model/tam_advisory_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/tam_advisory_info_response.py b/intersight/model/tam_advisory_info_response.py index ef0a8e54a1..26dfc18d35 100644 --- a/intersight/model/tam_advisory_info_response.py +++ b/intersight/model/tam_advisory_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/tam_advisory_instance.py b/intersight/model/tam_advisory_instance.py index a07d852261..b71750044c 100644 --- a/intersight/model/tam_advisory_instance.py +++ b/intersight/model/tam_advisory_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/tam_advisory_instance_all_of.py b/intersight/model/tam_advisory_instance_all_of.py index cdc0803f01..e46701e5ff 100644 --- a/intersight/model/tam_advisory_instance_all_of.py +++ b/intersight/model/tam_advisory_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/tam_advisory_instance_list.py b/intersight/model/tam_advisory_instance_list.py index 7b0f343259..735901b41c 100644 --- a/intersight/model/tam_advisory_instance_list.py +++ b/intersight/model/tam_advisory_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/tam_advisory_instance_list_all_of.py b/intersight/model/tam_advisory_instance_list_all_of.py index 9228ff39c0..3c1be5542d 100644 --- a/intersight/model/tam_advisory_instance_list_all_of.py +++ b/intersight/model/tam_advisory_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/tam_advisory_instance_response.py b/intersight/model/tam_advisory_instance_response.py index 699ed855b3..3e9a16b451 100644 --- a/intersight/model/tam_advisory_instance_response.py +++ b/intersight/model/tam_advisory_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/tam_api_data_source.py b/intersight/model/tam_api_data_source.py index e71437fb80..dabc4a29a4 100644 --- a/intersight/model/tam_api_data_source.py +++ b/intersight/model/tam_api_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_api_data_source_all_of.py b/intersight/model/tam_api_data_source_all_of.py index d5bc36d8c1..59a3f8b5d9 100644 --- a/intersight/model/tam_api_data_source_all_of.py +++ b/intersight/model/tam_api_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_base_advisory.py b/intersight/model/tam_base_advisory.py index 738aa89005..1f09e713f5 100644 --- a/intersight/model/tam_base_advisory.py +++ b/intersight/model/tam_base_advisory.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_base_advisory_all_of.py b/intersight/model/tam_base_advisory_all_of.py index f422157e0e..71bd13823b 100644 --- a/intersight/model/tam_base_advisory_all_of.py +++ b/intersight/model/tam_base_advisory_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_base_advisory_details.py b/intersight/model/tam_base_advisory_details.py index 5dcee2b649..813d01d0ad 100644 --- a/intersight/model/tam_base_advisory_details.py +++ b/intersight/model/tam_base_advisory_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 """ diff --git a/intersight/model/tam_base_advisory_details_all_of.py b/intersight/model/tam_base_advisory_details_all_of.py index 82cf2f3ffa..678f69447e 100644 --- a/intersight/model/tam_base_advisory_details_all_of.py +++ b/intersight/model/tam_base_advisory_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_base_advisory_relationship.py b/intersight/model/tam_base_advisory_relationship.py index 18f43c9c74..68259ffccf 100644 --- a/intersight/model/tam_base_advisory_relationship.py +++ b/intersight/model/tam_base_advisory_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 TamBaseAdvisoryRelationship(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 TamBaseAdvisoryRelationship(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 TamBaseAdvisoryRelationship(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 TamBaseAdvisoryRelationship(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 TamBaseAdvisoryRelationship(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 TamBaseAdvisoryRelationship(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 TamBaseAdvisoryRelationship(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 TamBaseAdvisoryRelationship(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 TamBaseAdvisoryRelationship(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 TamBaseAdvisoryRelationship(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/tam_base_data_source.py b/intersight/model/tam_base_data_source.py index 889b2f9ebe..4ddc4c3b3d 100644 --- a/intersight/model/tam_base_data_source.py +++ b/intersight/model/tam_base_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_base_data_source_all_of.py b/intersight/model/tam_base_data_source_all_of.py index 4fc25915d7..07dae9c9b1 100644 --- a/intersight/model/tam_base_data_source_all_of.py +++ b/intersight/model/tam_base_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_identifiers.py b/intersight/model/tam_identifiers.py index 55641cc180..9f58b44e68 100644 --- a/intersight/model/tam_identifiers.py +++ b/intersight/model/tam_identifiers.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_identifiers_all_of.py b/intersight/model/tam_identifiers_all_of.py index 74d1f5ca41..17c641a6be 100644 --- a/intersight/model/tam_identifiers_all_of.py +++ b/intersight/model/tam_identifiers_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_psirt_severity.py b/intersight/model/tam_psirt_severity.py index 6a7f3a7ef1..4bca775fd8 100644 --- a/intersight/model/tam_psirt_severity.py +++ b/intersight/model/tam_psirt_severity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_psirt_severity_all_of.py b/intersight/model/tam_psirt_severity_all_of.py index 8361b8261c..d652c96647 100644 --- a/intersight/model/tam_psirt_severity_all_of.py +++ b/intersight/model/tam_psirt_severity_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_query_entry.py b/intersight/model/tam_query_entry.py index 71908b1725..ad2ca9bd7f 100644 --- a/intersight/model/tam_query_entry.py +++ b/intersight/model/tam_query_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/tam_query_entry_all_of.py b/intersight/model/tam_query_entry_all_of.py index aeb9fbeed8..5b8041ff76 100644 --- a/intersight/model/tam_query_entry_all_of.py +++ b/intersight/model/tam_query_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/tam_s3_data_source.py b/intersight/model/tam_s3_data_source.py index 53c876649b..980d213e00 100644 --- a/intersight/model/tam_s3_data_source.py +++ b/intersight/model/tam_s3_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_s3_data_source_all_of.py b/intersight/model/tam_s3_data_source_all_of.py index 11e76988e0..6d9c39f409 100644 --- a/intersight/model/tam_s3_data_source_all_of.py +++ b/intersight/model/tam_s3_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_security_advisory.py b/intersight/model/tam_security_advisory.py index c02ce2f802..946ce5e982 100644 --- a/intersight/model/tam_security_advisory.py +++ b/intersight/model/tam_security_advisory.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_security_advisory_all_of.py b/intersight/model/tam_security_advisory_all_of.py index 2c1bd3d7c4..b21868b26c 100644 --- a/intersight/model/tam_security_advisory_all_of.py +++ b/intersight/model/tam_security_advisory_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_security_advisory_details.py b/intersight/model/tam_security_advisory_details.py index 69da710211..efcd190945 100644 --- a/intersight/model/tam_security_advisory_details.py +++ b/intersight/model/tam_security_advisory_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 """ diff --git a/intersight/model/tam_security_advisory_details_all_of.py b/intersight/model/tam_security_advisory_details_all_of.py index 170352816d..395fc7d795 100644 --- a/intersight/model/tam_security_advisory_details_all_of.py +++ b/intersight/model/tam_security_advisory_details_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_security_advisory_list.py b/intersight/model/tam_security_advisory_list.py index 39ea0d559c..2ed0fac60d 100644 --- a/intersight/model/tam_security_advisory_list.py +++ b/intersight/model/tam_security_advisory_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/tam_security_advisory_list_all_of.py b/intersight/model/tam_security_advisory_list_all_of.py index 21a3b2afdf..a086a994a3 100644 --- a/intersight/model/tam_security_advisory_list_all_of.py +++ b/intersight/model/tam_security_advisory_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/tam_security_advisory_response.py b/intersight/model/tam_security_advisory_response.py index b5bdca9273..d128e485d0 100644 --- a/intersight/model/tam_security_advisory_response.py +++ b/intersight/model/tam_security_advisory_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/tam_severity.py b/intersight/model/tam_severity.py index 48cbd84b32..ed371e5dff 100644 --- a/intersight/model/tam_severity.py +++ b/intersight/model/tam_severity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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 TamSeverity(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/tam_text_fsm_template_data_source.py b/intersight/model/tam_text_fsm_template_data_source.py index 64d4145c9f..8b7a61443b 100644 --- a/intersight/model/tam_text_fsm_template_data_source.py +++ b/intersight/model/tam_text_fsm_template_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tam_text_fsm_template_data_source_all_of.py b/intersight/model/tam_text_fsm_template_data_source_all_of.py index 1052049e00..332205976f 100644 --- a/intersight/model/tam_text_fsm_template_data_source_all_of.py +++ b/intersight/model/tam_text_fsm_template_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/task_hitachi_scoped_inventory.py b/intersight/model/task_hitachi_scoped_inventory.py index 4c8ee6dbe4..0f6e37977b 100644 --- a/intersight/model/task_hitachi_scoped_inventory.py +++ b/intersight/model/task_hitachi_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 """ diff --git a/intersight/model/task_hitachi_scoped_inventory_all_of.py b/intersight/model/task_hitachi_scoped_inventory_all_of.py index 97993e2f34..a75bce7f47 100644 --- a/intersight/model/task_hitachi_scoped_inventory_all_of.py +++ b/intersight/model/task_hitachi_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 """ diff --git a/intersight/model/task_hxap_scoped_inventory.py b/intersight/model/task_hxap_scoped_inventory.py index d9eb77876f..b3b83386e7 100644 --- a/intersight/model/task_hxap_scoped_inventory.py +++ b/intersight/model/task_hxap_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 """ diff --git a/intersight/model/task_hxap_scoped_inventory_all_of.py b/intersight/model/task_hxap_scoped_inventory_all_of.py index 3fe9b4c89e..5767181ec1 100644 --- a/intersight/model/task_hxap_scoped_inventory_all_of.py +++ b/intersight/model/task_hxap_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 """ diff --git a/intersight/model/task_net_app_scoped_inventory.py b/intersight/model/task_net_app_scoped_inventory.py index 52c352d54a..558d114b94 100644 --- a/intersight/model/task_net_app_scoped_inventory.py +++ b/intersight/model/task_net_app_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 """ diff --git a/intersight/model/task_net_app_scoped_inventory_all_of.py b/intersight/model/task_net_app_scoped_inventory_all_of.py index 5a8302adeb..5b5c845c0a 100644 --- a/intersight/model/task_net_app_scoped_inventory_all_of.py +++ b/intersight/model/task_net_app_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 """ diff --git a/intersight/model/task_public_cloud_scoped_inventory.py b/intersight/model/task_public_cloud_scoped_inventory.py index 2b0aeb0b9e..82fd64aaf1 100644 --- a/intersight/model/task_public_cloud_scoped_inventory.py +++ b/intersight/model/task_public_cloud_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 """ diff --git a/intersight/model/task_public_cloud_scoped_inventory_all_of.py b/intersight/model/task_public_cloud_scoped_inventory_all_of.py index 02a7c1888c..0ea916bc27 100644 --- a/intersight/model/task_public_cloud_scoped_inventory_all_of.py +++ b/intersight/model/task_public_cloud_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 """ diff --git a/intersight/model/task_pure_scoped_inventory.py b/intersight/model/task_pure_scoped_inventory.py index b1181752c2..a079dc5045 100644 --- a/intersight/model/task_pure_scoped_inventory.py +++ b/intersight/model/task_pure_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 """ diff --git a/intersight/model/task_pure_scoped_inventory_all_of.py b/intersight/model/task_pure_scoped_inventory_all_of.py index cc9c3f74d0..3401ae2427 100644 --- a/intersight/model/task_pure_scoped_inventory_all_of.py +++ b/intersight/model/task_pure_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 """ diff --git a/intersight/model/task_server_scoped_inventory.py b/intersight/model/task_server_scoped_inventory.py new file mode 100644 index 0000000000..40639fe132 --- /dev/null +++ b/intersight/model/task_server_scoped_inventory.py @@ -0,0 +1,306 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.connector_scoped_inventory import ConnectorScopedInventory + from intersight.model.display_names import DisplayNames + 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.task_server_scoped_inventory_all_of import TaskServerScopedInventoryAllOf + globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship + globals()['ConnectorScopedInventory'] = ConnectorScopedInventory + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['TaskServerScopedInventoryAllOf'] = TaskServerScopedInventoryAllOf + + +class TaskServerScopedInventory(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',): { + 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory", + }, + ('object_type',): { + 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory", + }, + } + + 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 + '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 + 'naming_property': (str,), # noqa: E501 + 'queries': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 + 'type': (str,), # noqa: E501 + 'values': ([str], none_type,), # 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 + '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 + 'naming_property': 'NamingProperty', # noqa: E501 + 'queries': 'Queries', # noqa: E501 + 'type': 'Type', # noqa: E501 + 'values': 'Values', # 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 + """TaskServerScopedInventory - 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 "task.ServerScopedInventory", must be one of ["task.ServerScopedInventory", ] # 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 "task.ServerScopedInventory", must be one of ["task.ServerScopedInventory", ] # 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,) + 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 + naming_property (str): A property that uniquely identifies the object to be inventoried as a part of the scoped inventory.. [optional] # noqa: E501 + queries (bool, date, datetime, dict, float, int, list, str, none_type): Set of queries to identify objects to be inventoried as part of this scoped inventory action.. [optional] # noqa: E501 + type (str): Type of the object for which scoped inventory needs to be run.. [optional] # noqa: E501 + values ([str], none_type): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "task.ServerScopedInventory") + object_type = kwargs.get('object_type', "task.ServerScopedInventory") + _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': [ + ConnectorScopedInventory, + TaskServerScopedInventoryAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/task_server_scoped_inventory_all_of.py b/intersight/model/task_server_scoped_inventory_all_of.py new file mode 100644 index 0000000000..594e11db00 --- /dev/null +++ b/intersight/model/task_server_scoped_inventory_all_of.py @@ -0,0 +1,190 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 + globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship + + +class TaskServerScopedInventoryAllOf(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',): { + 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory", + }, + ('object_type',): { + 'TASK.SERVERSCOPEDINVENTORY': "task.ServerScopedInventory", + }, + } + + 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 + 'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # 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 + """TaskServerScopedInventoryAllOf - 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 "task.ServerScopedInventory", must be one of ["task.ServerScopedInventory", ] # 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 "task.ServerScopedInventory", must be one of ["task.ServerScopedInventory", ] # 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,) + registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "task.ServerScopedInventory") + object_type = kwargs.get('object_type', "task.ServerScopedInventory") + _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/techsupportmanagement_appliance_param.py b/intersight/model/techsupportmanagement_appliance_param.py index af6fb7a033..a692bf2ed4 100644 --- a/intersight/model/techsupportmanagement_appliance_param.py +++ b/intersight/model/techsupportmanagement_appliance_param.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/techsupportmanagement_appliance_param_all_of.py b/intersight/model/techsupportmanagement_appliance_param_all_of.py index 40bea7b073..95ed4bdcfc 100644 --- a/intersight/model/techsupportmanagement_appliance_param_all_of.py +++ b/intersight/model/techsupportmanagement_appliance_param_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/techsupportmanagement_collection_control_policy.py b/intersight/model/techsupportmanagement_collection_control_policy.py index 0cca144634..24424eb4eb 100644 --- a/intersight/model/techsupportmanagement_collection_control_policy.py +++ b/intersight/model/techsupportmanagement_collection_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/techsupportmanagement_collection_control_policy_all_of.py b/intersight/model/techsupportmanagement_collection_control_policy_all_of.py index 8a00cc7b9d..cc11f6daab 100644 --- a/intersight/model/techsupportmanagement_collection_control_policy_all_of.py +++ b/intersight/model/techsupportmanagement_collection_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/techsupportmanagement_collection_control_policy_list.py b/intersight/model/techsupportmanagement_collection_control_policy_list.py index 85aaf571e2..434573407c 100644 --- a/intersight/model/techsupportmanagement_collection_control_policy_list.py +++ b/intersight/model/techsupportmanagement_collection_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/techsupportmanagement_collection_control_policy_list_all_of.py b/intersight/model/techsupportmanagement_collection_control_policy_list_all_of.py index b70f5c3638..3e5e4cf633 100644 --- a/intersight/model/techsupportmanagement_collection_control_policy_list_all_of.py +++ b/intersight/model/techsupportmanagement_collection_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/techsupportmanagement_collection_control_policy_response.py b/intersight/model/techsupportmanagement_collection_control_policy_response.py index 8d00ead960..1cfdbac4a3 100644 --- a/intersight/model/techsupportmanagement_collection_control_policy_response.py +++ b/intersight/model/techsupportmanagement_collection_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/techsupportmanagement_download.py b/intersight/model/techsupportmanagement_download.py index 2b774c67e5..65d6f92c6f 100644 --- a/intersight/model/techsupportmanagement_download.py +++ b/intersight/model/techsupportmanagement_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/techsupportmanagement_download_all_of.py b/intersight/model/techsupportmanagement_download_all_of.py index 6cdeafecde..34b0e0a771 100644 --- a/intersight/model/techsupportmanagement_download_all_of.py +++ b/intersight/model/techsupportmanagement_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/techsupportmanagement_download_list.py b/intersight/model/techsupportmanagement_download_list.py index 1858536070..8cc5da6d90 100644 --- a/intersight/model/techsupportmanagement_download_list.py +++ b/intersight/model/techsupportmanagement_download_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/techsupportmanagement_download_list_all_of.py b/intersight/model/techsupportmanagement_download_list_all_of.py index 7a5d11b3c0..06c91ae00e 100644 --- a/intersight/model/techsupportmanagement_download_list_all_of.py +++ b/intersight/model/techsupportmanagement_download_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/techsupportmanagement_download_response.py b/intersight/model/techsupportmanagement_download_response.py index dc3530967c..efc12ff019 100644 --- a/intersight/model/techsupportmanagement_download_response.py +++ b/intersight/model/techsupportmanagement_download_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/techsupportmanagement_nia_param.py b/intersight/model/techsupportmanagement_nia_param.py index 26a93af72f..251d3bbbd1 100644 --- a/intersight/model/techsupportmanagement_nia_param.py +++ b/intersight/model/techsupportmanagement_nia_param.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/techsupportmanagement_nia_param_all_of.py b/intersight/model/techsupportmanagement_nia_param_all_of.py index 1a32b7b253..943ef95e66 100644 --- a/intersight/model/techsupportmanagement_nia_param_all_of.py +++ b/intersight/model/techsupportmanagement_nia_param_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/techsupportmanagement_platform_param.py b/intersight/model/techsupportmanagement_platform_param.py index b0052d04a0..65c746a893 100644 --- a/intersight/model/techsupportmanagement_platform_param.py +++ b/intersight/model/techsupportmanagement_platform_param.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/techsupportmanagement_platform_param_all_of.py b/intersight/model/techsupportmanagement_platform_param_all_of.py index e04bebc4cf..ee8a14d0fe 100644 --- a/intersight/model/techsupportmanagement_platform_param_all_of.py +++ b/intersight/model/techsupportmanagement_platform_param_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/techsupportmanagement_tech_support_bundle.py b/intersight/model/techsupportmanagement_tech_support_bundle.py index 54760a1996..1f7e87e2de 100644 --- a/intersight/model/techsupportmanagement_tech_support_bundle.py +++ b/intersight/model/techsupportmanagement_tech_support_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/techsupportmanagement_tech_support_bundle_all_of.py b/intersight/model/techsupportmanagement_tech_support_bundle_all_of.py index 0508731240..694d843b75 100644 --- a/intersight/model/techsupportmanagement_tech_support_bundle_all_of.py +++ b/intersight/model/techsupportmanagement_tech_support_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/techsupportmanagement_tech_support_bundle_list.py b/intersight/model/techsupportmanagement_tech_support_bundle_list.py index 9d68ffde0d..f0d170886c 100644 --- a/intersight/model/techsupportmanagement_tech_support_bundle_list.py +++ b/intersight/model/techsupportmanagement_tech_support_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/techsupportmanagement_tech_support_bundle_list_all_of.py b/intersight/model/techsupportmanagement_tech_support_bundle_list_all_of.py index 3b6650935f..b1e85f0f27 100644 --- a/intersight/model/techsupportmanagement_tech_support_bundle_list_all_of.py +++ b/intersight/model/techsupportmanagement_tech_support_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/techsupportmanagement_tech_support_bundle_relationship.py b/intersight/model/techsupportmanagement_tech_support_bundle_relationship.py index b988c51456..7486f49798 100644 --- a/intersight/model/techsupportmanagement_tech_support_bundle_relationship.py +++ b/intersight/model/techsupportmanagement_tech_support_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 """ @@ -130,6 +130,8 @@ class TechsupportmanagementTechSupportBundleRelationship(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", @@ -146,6 +148,7 @@ class TechsupportmanagementTechSupportBundleRelationship(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", @@ -194,9 +197,12 @@ class TechsupportmanagementTechSupportBundleRelationship(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", @@ -260,10 +266,6 @@ class TechsupportmanagementTechSupportBundleRelationship(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", @@ -272,6 +274,7 @@ class TechsupportmanagementTechSupportBundleRelationship(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", @@ -520,6 +523,7 @@ class TechsupportmanagementTechSupportBundleRelationship(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", @@ -689,6 +693,11 @@ class TechsupportmanagementTechSupportBundleRelationship(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", @@ -804,6 +813,7 @@ class TechsupportmanagementTechSupportBundleRelationship(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", @@ -835,6 +845,7 @@ class TechsupportmanagementTechSupportBundleRelationship(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", @@ -867,12 +878,14 @@ class TechsupportmanagementTechSupportBundleRelationship(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/techsupportmanagement_tech_support_bundle_response.py b/intersight/model/techsupportmanagement_tech_support_bundle_response.py index c6076ffe68..d3caa7623c 100644 --- a/intersight/model/techsupportmanagement_tech_support_bundle_response.py +++ b/intersight/model/techsupportmanagement_tech_support_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/techsupportmanagement_tech_support_status.py b/intersight/model/techsupportmanagement_tech_support_status.py index 6df1fb30ef..94709cfaa1 100644 --- a/intersight/model/techsupportmanagement_tech_support_status.py +++ b/intersight/model/techsupportmanagement_tech_support_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/techsupportmanagement_tech_support_status_all_of.py b/intersight/model/techsupportmanagement_tech_support_status_all_of.py index 806ce7f727..86f6be8fd2 100644 --- a/intersight/model/techsupportmanagement_tech_support_status_all_of.py +++ b/intersight/model/techsupportmanagement_tech_support_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/techsupportmanagement_tech_support_status_list.py b/intersight/model/techsupportmanagement_tech_support_status_list.py index 81065f709f..cc3d0f5215 100644 --- a/intersight/model/techsupportmanagement_tech_support_status_list.py +++ b/intersight/model/techsupportmanagement_tech_support_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/techsupportmanagement_tech_support_status_list_all_of.py b/intersight/model/techsupportmanagement_tech_support_status_list_all_of.py index 1d101f294d..b29f09b1c0 100644 --- a/intersight/model/techsupportmanagement_tech_support_status_list_all_of.py +++ b/intersight/model/techsupportmanagement_tech_support_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/techsupportmanagement_tech_support_status_relationship.py b/intersight/model/techsupportmanagement_tech_support_status_relationship.py index bcecd35539..9d0eb88aeb 100644 --- a/intersight/model/techsupportmanagement_tech_support_status_relationship.py +++ b/intersight/model/techsupportmanagement_tech_support_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 """ @@ -78,6 +78,8 @@ class TechsupportmanagementTechSupportStatusRelationship(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 TechsupportmanagementTechSupportStatusRelationship(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 TechsupportmanagementTechSupportStatusRelationship(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 TechsupportmanagementTechSupportStatusRelationship(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 TechsupportmanagementTechSupportStatusRelationship(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 TechsupportmanagementTechSupportStatusRelationship(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 TechsupportmanagementTechSupportStatusRelationship(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 TechsupportmanagementTechSupportStatusRelationship(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 TechsupportmanagementTechSupportStatusRelationship(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 TechsupportmanagementTechSupportStatusRelationship(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/techsupportmanagement_tech_support_status_response.py b/intersight/model/techsupportmanagement_tech_support_status_response.py index ffcd903ea5..267f9298f6 100644 --- a/intersight/model/techsupportmanagement_tech_support_status_response.py +++ b/intersight/model/techsupportmanagement_tech_support_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/telemetry_druid_aggregate_search_spec.py b/intersight/model/telemetry_druid_aggregate_search_spec.py index dcc08cbb8a..d6cf93d657 100644 --- a/intersight/model/telemetry_druid_aggregate_search_spec.py +++ b/intersight/model/telemetry_druid_aggregate_search_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_aggregator.py b/intersight/model/telemetry_druid_aggregator.py index 93d5755776..f28d587de2 100644 --- a/intersight/model/telemetry_druid_aggregator.py +++ b/intersight/model/telemetry_druid_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_and_filter.py b/intersight/model/telemetry_druid_and_filter.py index c92a96ffea..8faca5fa1a 100644 --- a/intersight/model/telemetry_druid_and_filter.py +++ b/intersight/model/telemetry_druid_and_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_and_filter_all_of.py b/intersight/model/telemetry_druid_and_filter_all_of.py index a6e8c1a008..8cc6de2ad4 100644 --- a/intersight/model/telemetry_druid_and_filter_all_of.py +++ b/intersight/model/telemetry_druid_and_filter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_any_aggregator.py b/intersight/model/telemetry_druid_any_aggregator.py index 5d376c9bba..c9b7d7aa98 100644 --- a/intersight/model/telemetry_druid_any_aggregator.py +++ b/intersight/model/telemetry_druid_any_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_any_aggregator_all_of.py b/intersight/model/telemetry_druid_any_aggregator_all_of.py index a4d0b88001..b3a3160731 100644 --- a/intersight/model/telemetry_druid_any_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_any_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_arithmetic_post_aggregator.py b/intersight/model/telemetry_druid_arithmetic_post_aggregator.py index 8dd1a91808..9181974009 100644 --- a/intersight/model/telemetry_druid_arithmetic_post_aggregator.py +++ b/intersight/model/telemetry_druid_arithmetic_post_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_arithmetic_post_aggregator_all_of.py b/intersight/model/telemetry_druid_arithmetic_post_aggregator_all_of.py index b3e836dd9c..8d4bdef081 100644 --- a/intersight/model/telemetry_druid_arithmetic_post_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_arithmetic_post_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_aggregator.py b/intersight/model/telemetry_druid_base_aggregator.py index 3fb4f2fa95..9752cfb1aa 100644 --- a/intersight/model/telemetry_druid_base_aggregator.py +++ b/intersight/model/telemetry_druid_base_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_data_source.py b/intersight/model/telemetry_druid_base_data_source.py index 219b50244c..d645673b7f 100644 --- a/intersight/model/telemetry_druid_base_data_source.py +++ b/intersight/model/telemetry_druid_base_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_dimension_spec.py b/intersight/model/telemetry_druid_base_dimension_spec.py index a759b610d3..451ad6a979 100644 --- a/intersight/model/telemetry_druid_base_dimension_spec.py +++ b/intersight/model/telemetry_druid_base_dimension_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_filter.py b/intersight/model/telemetry_druid_base_filter.py index 7ce0c9008b..782b5ba22e 100644 --- a/intersight/model/telemetry_druid_base_filter.py +++ b/intersight/model/telemetry_druid_base_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_granularity.py b/intersight/model/telemetry_druid_base_granularity.py index 74e71d46e7..bb3ec487ec 100644 --- a/intersight/model/telemetry_druid_base_granularity.py +++ b/intersight/model/telemetry_druid_base_granularity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_having_filter.py b/intersight/model/telemetry_druid_base_having_filter.py index 7f31e7693b..0aeb66685f 100644 --- a/intersight/model/telemetry_druid_base_having_filter.py +++ b/intersight/model/telemetry_druid_base_having_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_limit_spec.py b/intersight/model/telemetry_druid_base_limit_spec.py index 915e4d239c..c63684fd83 100644 --- a/intersight/model/telemetry_druid_base_limit_spec.py +++ b/intersight/model/telemetry_druid_base_limit_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_post_aggregator.py b/intersight/model/telemetry_druid_base_post_aggregator.py index 2e141b2361..1c382b5f52 100644 --- a/intersight/model/telemetry_druid_base_post_aggregator.py +++ b/intersight/model/telemetry_druid_base_post_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_request.py b/intersight/model/telemetry_druid_base_request.py index 7238f9dc57..466cdf615b 100644 --- a/intersight/model/telemetry_druid_base_request.py +++ b/intersight/model/telemetry_druid_base_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/telemetry_druid_base_search_spec.py b/intersight/model/telemetry_druid_base_search_spec.py index 5eeb9a050a..483d398e76 100644 --- a/intersight/model/telemetry_druid_base_search_spec.py +++ b/intersight/model/telemetry_druid_base_search_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_base_top_n_metric_spec.py b/intersight/model/telemetry_druid_base_top_n_metric_spec.py index bd073c3966..17d23e4712 100644 --- a/intersight/model/telemetry_druid_base_top_n_metric_spec.py +++ b/intersight/model/telemetry_druid_base_top_n_metric_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_column_comparison_filter.py b/intersight/model/telemetry_druid_column_comparison_filter.py index cacbdc842e..9efb90eba9 100644 --- a/intersight/model/telemetry_druid_column_comparison_filter.py +++ b/intersight/model/telemetry_druid_column_comparison_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_column_comparison_filter_all_of.py b/intersight/model/telemetry_druid_column_comparison_filter_all_of.py index 7331e981d6..0bdd9b0f73 100644 --- a/intersight/model/telemetry_druid_column_comparison_filter_all_of.py +++ b/intersight/model/telemetry_druid_column_comparison_filter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_constant_post_aggregator.py b/intersight/model/telemetry_druid_constant_post_aggregator.py index 5e9a682dd9..d2c8e7981b 100644 --- a/intersight/model/telemetry_druid_constant_post_aggregator.py +++ b/intersight/model/telemetry_druid_constant_post_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_constant_post_aggregator_all_of.py b/intersight/model/telemetry_druid_constant_post_aggregator_all_of.py index 77988b6465..8723aa0f0f 100644 --- a/intersight/model/telemetry_druid_constant_post_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_constant_post_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_contains_search_spec.py b/intersight/model/telemetry_druid_contains_search_spec.py index a1bf4d63c6..b1b37f85e3 100644 --- a/intersight/model/telemetry_druid_contains_search_spec.py +++ b/intersight/model/telemetry_druid_contains_search_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_contains_search_spec_all_of.py b/intersight/model/telemetry_druid_contains_search_spec_all_of.py index f08a04c45c..181224ded1 100644 --- a/intersight/model/telemetry_druid_contains_search_spec_all_of.py +++ b/intersight/model/telemetry_druid_contains_search_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_count_aggregator.py b/intersight/model/telemetry_druid_count_aggregator.py index af0a563f8e..cb3cac170a 100644 --- a/intersight/model/telemetry_druid_count_aggregator.py +++ b/intersight/model/telemetry_druid_count_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_count_aggregator_all_of.py b/intersight/model/telemetry_druid_count_aggregator_all_of.py index 0f0a9c9f80..69fb05c7ea 100644 --- a/intersight/model/telemetry_druid_count_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_count_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_data_source.py b/intersight/model/telemetry_druid_data_source.py index 68d3d1b3b1..86392898ab 100644 --- a/intersight/model/telemetry_druid_data_source.py +++ b/intersight/model/telemetry_druid_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_data_source_metadata_request.py b/intersight/model/telemetry_druid_data_source_metadata_request.py index af1fab63ba..0bb75cac27 100644 --- a/intersight/model/telemetry_druid_data_source_metadata_request.py +++ b/intersight/model/telemetry_druid_data_source_metadata_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/telemetry_druid_data_source_metadata_request_all_of.py b/intersight/model/telemetry_druid_data_source_metadata_request_all_of.py index dc3dd8ef26..b87715495c 100644 --- a/intersight/model/telemetry_druid_data_source_metadata_request_all_of.py +++ b/intersight/model/telemetry_druid_data_source_metadata_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/telemetry_druid_data_source_metadata_result.py b/intersight/model/telemetry_druid_data_source_metadata_result.py index a42dfc9aeb..40e98a62cd 100644 --- a/intersight/model/telemetry_druid_data_source_metadata_result.py +++ b/intersight/model/telemetry_druid_data_source_metadata_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/telemetry_druid_default_dimension_spec.py b/intersight/model/telemetry_druid_default_dimension_spec.py index d4ba7dde20..59c26f4237 100644 --- a/intersight/model/telemetry_druid_default_dimension_spec.py +++ b/intersight/model/telemetry_druid_default_dimension_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_default_dimension_spec_all_of.py b/intersight/model/telemetry_druid_default_dimension_spec_all_of.py index 6e0331e3d2..ca5db30525 100644 --- a/intersight/model/telemetry_druid_default_dimension_spec_all_of.py +++ b/intersight/model/telemetry_druid_default_dimension_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_default_limit_spec.py b/intersight/model/telemetry_druid_default_limit_spec.py index 573df842a2..8c486daad2 100644 --- a/intersight/model/telemetry_druid_default_limit_spec.py +++ b/intersight/model/telemetry_druid_default_limit_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_default_limit_spec_all_of.py b/intersight/model/telemetry_druid_default_limit_spec_all_of.py index b8040ea1fb..6feb2fd594 100644 --- a/intersight/model/telemetry_druid_default_limit_spec_all_of.py +++ b/intersight/model/telemetry_druid_default_limit_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_dimension_spec.py b/intersight/model/telemetry_druid_dimension_spec.py index eebe446470..d582fa7b75 100644 --- a/intersight/model/telemetry_druid_dimension_spec.py +++ b/intersight/model/telemetry_druid_dimension_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_dimension_top_n_metric_spec.py b/intersight/model/telemetry_druid_dimension_top_n_metric_spec.py index 43c089a6c2..c7efbe70a6 100644 --- a/intersight/model/telemetry_druid_dimension_top_n_metric_spec.py +++ b/intersight/model/telemetry_druid_dimension_top_n_metric_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_dimension_top_n_metric_spec_all_of.py b/intersight/model/telemetry_druid_dimension_top_n_metric_spec_all_of.py index 404a13184e..911b0e2ff5 100644 --- a/intersight/model/telemetry_druid_dimension_top_n_metric_spec_all_of.py +++ b/intersight/model/telemetry_druid_dimension_top_n_metric_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_duration_granularity.py b/intersight/model/telemetry_druid_duration_granularity.py index 3fa698a219..6a89bd0446 100644 --- a/intersight/model/telemetry_druid_duration_granularity.py +++ b/intersight/model/telemetry_druid_duration_granularity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_duration_granularity_all_of.py b/intersight/model/telemetry_druid_duration_granularity_all_of.py index 3d698194b5..c07c546740 100644 --- a/intersight/model/telemetry_druid_duration_granularity_all_of.py +++ b/intersight/model/telemetry_druid_duration_granularity_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_error.py b/intersight/model/telemetry_druid_error.py index d51a60cb3b..f6e7c98d5b 100644 --- a/intersight/model/telemetry_druid_error.py +++ b/intersight/model/telemetry_druid_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/telemetry_druid_extraction_dimension_spec.py b/intersight/model/telemetry_druid_extraction_dimension_spec.py index 40aa3a3cad..544b9e5bd7 100644 --- a/intersight/model/telemetry_druid_extraction_dimension_spec.py +++ b/intersight/model/telemetry_druid_extraction_dimension_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_extraction_dimension_spec_all_of.py b/intersight/model/telemetry_druid_extraction_dimension_spec_all_of.py index fedce06eea..5b926ff821 100644 --- a/intersight/model/telemetry_druid_extraction_dimension_spec_all_of.py +++ b/intersight/model/telemetry_druid_extraction_dimension_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_field_accessor_post_aggregator.py b/intersight/model/telemetry_druid_field_accessor_post_aggregator.py index cda0fc34de..e0e73e71e1 100644 --- a/intersight/model/telemetry_druid_field_accessor_post_aggregator.py +++ b/intersight/model/telemetry_druid_field_accessor_post_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_field_accessor_post_aggregator_all_of.py b/intersight/model/telemetry_druid_field_accessor_post_aggregator_all_of.py index e071351e17..8fdb0a84d2 100644 --- a/intersight/model/telemetry_druid_field_accessor_post_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_field_accessor_post_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_filter.py b/intersight/model/telemetry_druid_filter.py index 5a13b4de7c..907ceeb582 100644 --- a/intersight/model/telemetry_druid_filter.py +++ b/intersight/model/telemetry_druid_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_filtered_aggregator.py b/intersight/model/telemetry_druid_filtered_aggregator.py index 0687ffadaa..10fc1f1289 100644 --- a/intersight/model/telemetry_druid_filtered_aggregator.py +++ b/intersight/model/telemetry_druid_filtered_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_filtered_aggregator_all_of.py b/intersight/model/telemetry_druid_filtered_aggregator_all_of.py index 1c37507ec1..c4338366c2 100644 --- a/intersight/model/telemetry_druid_filtered_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_filtered_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_first_last_aggregator.py b/intersight/model/telemetry_druid_first_last_aggregator.py index 100c71c42a..763de88c26 100644 --- a/intersight/model/telemetry_druid_first_last_aggregator.py +++ b/intersight/model/telemetry_druid_first_last_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_first_last_aggregator_all_of.py b/intersight/model/telemetry_druid_first_last_aggregator_all_of.py index a5992a5b7f..cd2e1cdbc4 100644 --- a/intersight/model/telemetry_druid_first_last_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_first_last_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_fragment_search_spec.py b/intersight/model/telemetry_druid_fragment_search_spec.py index 5e07b6555b..4161918aa6 100644 --- a/intersight/model/telemetry_druid_fragment_search_spec.py +++ b/intersight/model/telemetry_druid_fragment_search_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_fragment_search_spec_all_of.py b/intersight/model/telemetry_druid_fragment_search_spec_all_of.py index 92d6dd15c6..bcfead943d 100644 --- a/intersight/model/telemetry_druid_fragment_search_spec_all_of.py +++ b/intersight/model/telemetry_druid_fragment_search_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_granularity.py b/intersight/model/telemetry_druid_granularity.py index c20e108270..3ef3ad93f2 100644 --- a/intersight/model/telemetry_druid_granularity.py +++ b/intersight/model/telemetry_druid_granularity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_greatest_least_post_aggregator.py b/intersight/model/telemetry_druid_greatest_least_post_aggregator.py index 1ba7f64c0a..1119991a2e 100644 --- a/intersight/model/telemetry_druid_greatest_least_post_aggregator.py +++ b/intersight/model/telemetry_druid_greatest_least_post_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_greatest_least_post_aggregator_all_of.py b/intersight/model/telemetry_druid_greatest_least_post_aggregator_all_of.py index 6d245e26c4..e64bb18fd3 100644 --- a/intersight/model/telemetry_druid_greatest_least_post_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_greatest_least_post_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_group_by_request.py b/intersight/model/telemetry_druid_group_by_request.py index 1ea0225151..3bddc0ca78 100644 --- a/intersight/model/telemetry_druid_group_by_request.py +++ b/intersight/model/telemetry_druid_group_by_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/telemetry_druid_group_by_request_all_of.py b/intersight/model/telemetry_druid_group_by_request_all_of.py index 07f0271c36..e07fa35e09 100644 --- a/intersight/model/telemetry_druid_group_by_request_all_of.py +++ b/intersight/model/telemetry_druid_group_by_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/telemetry_druid_group_by_result.py b/intersight/model/telemetry_druid_group_by_result.py index 15384e9b97..f0f727c719 100644 --- a/intersight/model/telemetry_druid_group_by_result.py +++ b/intersight/model/telemetry_druid_group_by_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/telemetry_druid_having_dimension_selector_filter.py b/intersight/model/telemetry_druid_having_dimension_selector_filter.py index 43de521543..698e9d21d3 100644 --- a/intersight/model/telemetry_druid_having_dimension_selector_filter.py +++ b/intersight/model/telemetry_druid_having_dimension_selector_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_having_dimension_selector_filter_all_of.py b/intersight/model/telemetry_druid_having_dimension_selector_filter_all_of.py index 3712b20743..2094b2c028 100644 --- a/intersight/model/telemetry_druid_having_dimension_selector_filter_all_of.py +++ b/intersight/model/telemetry_druid_having_dimension_selector_filter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_having_filter.py b/intersight/model/telemetry_druid_having_filter.py index eea4326acd..ae8b3beca0 100644 --- a/intersight/model/telemetry_druid_having_filter.py +++ b/intersight/model/telemetry_druid_having_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_having_numeric_filter.py b/intersight/model/telemetry_druid_having_numeric_filter.py index fe68b41a86..9a2a40b247 100644 --- a/intersight/model/telemetry_druid_having_numeric_filter.py +++ b/intersight/model/telemetry_druid_having_numeric_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_having_numeric_filter_all_of.py b/intersight/model/telemetry_druid_having_numeric_filter_all_of.py index 32fed14c88..49dc9be05e 100644 --- a/intersight/model/telemetry_druid_having_numeric_filter_all_of.py +++ b/intersight/model/telemetry_druid_having_numeric_filter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_having_query_filter.py b/intersight/model/telemetry_druid_having_query_filter.py index 15338af338..f7576a98c8 100644 --- a/intersight/model/telemetry_druid_having_query_filter.py +++ b/intersight/model/telemetry_druid_having_query_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_having_query_filter_all_of.py b/intersight/model/telemetry_druid_having_query_filter_all_of.py index 41f0c58220..7f83fe8711 100644 --- a/intersight/model/telemetry_druid_having_query_filter_all_of.py +++ b/intersight/model/telemetry_druid_having_query_filter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_hyper_unique_post_aggregator.py b/intersight/model/telemetry_druid_hyper_unique_post_aggregator.py index 878e7e5483..acad78444d 100644 --- a/intersight/model/telemetry_druid_hyper_unique_post_aggregator.py +++ b/intersight/model/telemetry_druid_hyper_unique_post_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_hyper_unique_post_aggregator_all_of.py b/intersight/model/telemetry_druid_hyper_unique_post_aggregator_all_of.py index ee5bc29ffb..9006d2038b 100644 --- a/intersight/model/telemetry_druid_hyper_unique_post_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_hyper_unique_post_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_inline_data_source.py b/intersight/model/telemetry_druid_inline_data_source.py index 3f9d555a04..4ceb2f0b9f 100644 --- a/intersight/model/telemetry_druid_inline_data_source.py +++ b/intersight/model/telemetry_druid_inline_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_inline_data_source_all_of.py b/intersight/model/telemetry_druid_inline_data_source_all_of.py index 25c6e9490f..c8f5c25e07 100644 --- a/intersight/model/telemetry_druid_inline_data_source_all_of.py +++ b/intersight/model/telemetry_druid_inline_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_insensitive_contains_search_spec.py b/intersight/model/telemetry_druid_insensitive_contains_search_spec.py index 255abbdc20..60b13833b7 100644 --- a/intersight/model/telemetry_druid_insensitive_contains_search_spec.py +++ b/intersight/model/telemetry_druid_insensitive_contains_search_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_insensitive_contains_search_spec_all_of.py b/intersight/model/telemetry_druid_insensitive_contains_search_spec_all_of.py index 8dd2b6ec86..eb3c595cc3 100644 --- a/intersight/model/telemetry_druid_insensitive_contains_search_spec_all_of.py +++ b/intersight/model/telemetry_druid_insensitive_contains_search_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_interval_result.py b/intersight/model/telemetry_druid_interval_result.py index 2a4e8f06e8..7fc861355b 100644 --- a/intersight/model/telemetry_druid_interval_result.py +++ b/intersight/model/telemetry_druid_interval_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/telemetry_druid_inverted_top_n_metric_spec.py b/intersight/model/telemetry_druid_inverted_top_n_metric_spec.py index 18a6ec7c43..f4b74a99b4 100644 --- a/intersight/model/telemetry_druid_inverted_top_n_metric_spec.py +++ b/intersight/model/telemetry_druid_inverted_top_n_metric_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_inverted_top_n_metric_spec_all_of.py b/intersight/model/telemetry_druid_inverted_top_n_metric_spec_all_of.py index 453d672cef..955fb680b6 100644 --- a/intersight/model/telemetry_druid_inverted_top_n_metric_spec_all_of.py +++ b/intersight/model/telemetry_druid_inverted_top_n_metric_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_join_data_source.py b/intersight/model/telemetry_druid_join_data_source.py index f7a32fecd6..0810b872a8 100644 --- a/intersight/model/telemetry_druid_join_data_source.py +++ b/intersight/model/telemetry_druid_join_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_join_data_source_all_of.py b/intersight/model/telemetry_druid_join_data_source_all_of.py index 1c560100e0..42f0dd832d 100644 --- a/intersight/model/telemetry_druid_join_data_source_all_of.py +++ b/intersight/model/telemetry_druid_join_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_lookup_data_source.py b/intersight/model/telemetry_druid_lookup_data_source.py index e486dd4bc2..4678eea2cc 100644 --- a/intersight/model/telemetry_druid_lookup_data_source.py +++ b/intersight/model/telemetry_druid_lookup_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_lookup_data_source_all_of.py b/intersight/model/telemetry_druid_lookup_data_source_all_of.py index 105bfcc7d1..85f19a6dd0 100644 --- a/intersight/model/telemetry_druid_lookup_data_source_all_of.py +++ b/intersight/model/telemetry_druid_lookup_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_min_max_aggregator.py b/intersight/model/telemetry_druid_min_max_aggregator.py index abec20d450..048d905c89 100644 --- a/intersight/model/telemetry_druid_min_max_aggregator.py +++ b/intersight/model/telemetry_druid_min_max_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_min_max_aggregator_all_of.py b/intersight/model/telemetry_druid_min_max_aggregator_all_of.py index 82b7067cb0..303f89ee1b 100644 --- a/intersight/model/telemetry_druid_min_max_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_min_max_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_not_filter.py b/intersight/model/telemetry_druid_not_filter.py index dcf681bf4d..a8eac4c4d6 100644 --- a/intersight/model/telemetry_druid_not_filter.py +++ b/intersight/model/telemetry_druid_not_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_not_filter_all_of.py b/intersight/model/telemetry_druid_not_filter_all_of.py index 65cafae02e..d1dd7224c8 100644 --- a/intersight/model/telemetry_druid_not_filter_all_of.py +++ b/intersight/model/telemetry_druid_not_filter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_numeric_top_n_metric_spec.py b/intersight/model/telemetry_druid_numeric_top_n_metric_spec.py index 3216819ef9..096d3d3552 100644 --- a/intersight/model/telemetry_druid_numeric_top_n_metric_spec.py +++ b/intersight/model/telemetry_druid_numeric_top_n_metric_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_numeric_top_n_metric_spec_all_of.py b/intersight/model/telemetry_druid_numeric_top_n_metric_spec_all_of.py index 7ecf00117b..43b0ea4169 100644 --- a/intersight/model/telemetry_druid_numeric_top_n_metric_spec_all_of.py +++ b/intersight/model/telemetry_druid_numeric_top_n_metric_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_or_filter.py b/intersight/model/telemetry_druid_or_filter.py index 6fd9301aea..346b67947e 100644 --- a/intersight/model/telemetry_druid_or_filter.py +++ b/intersight/model/telemetry_druid_or_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_order_by_column_spec.py b/intersight/model/telemetry_druid_order_by_column_spec.py index aad6cb902a..57315fce5d 100644 --- a/intersight/model/telemetry_druid_order_by_column_spec.py +++ b/intersight/model/telemetry_druid_order_by_column_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_period_granularity.py b/intersight/model/telemetry_druid_period_granularity.py index 0e66f8076a..0bc630ac7d 100644 --- a/intersight/model/telemetry_druid_period_granularity.py +++ b/intersight/model/telemetry_druid_period_granularity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_period_granularity_all_of.py b/intersight/model/telemetry_druid_period_granularity_all_of.py index 7c3ac8eed9..3e1414e732 100644 --- a/intersight/model/telemetry_druid_period_granularity_all_of.py +++ b/intersight/model/telemetry_druid_period_granularity_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_post_aggregator.py b/intersight/model/telemetry_druid_post_aggregator.py index 20bd22620e..48fa37230a 100644 --- a/intersight/model/telemetry_druid_post_aggregator.py +++ b/intersight/model/telemetry_druid_post_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_query_context.py b/intersight/model/telemetry_druid_query_context.py index 5629fee584..644e92c999 100644 --- a/intersight/model/telemetry_druid_query_context.py +++ b/intersight/model/telemetry_druid_query_context.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_query_data_source.py b/intersight/model/telemetry_druid_query_data_source.py index 71482bd53c..5a5ed1e2b5 100644 --- a/intersight/model/telemetry_druid_query_data_source.py +++ b/intersight/model/telemetry_druid_query_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_query_data_source_all_of.py b/intersight/model/telemetry_druid_query_data_source_all_of.py index 81e3c9ca13..be62d7ec2f 100644 --- a/intersight/model/telemetry_druid_query_data_source_all_of.py +++ b/intersight/model/telemetry_druid_query_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_regex_filter.py b/intersight/model/telemetry_druid_regex_filter.py index 3271ab7ddc..1af2238f87 100644 --- a/intersight/model/telemetry_druid_regex_filter.py +++ b/intersight/model/telemetry_druid_regex_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_regex_filter_all_of.py b/intersight/model/telemetry_druid_regex_filter_all_of.py index 95ebe72d9f..3d64588fe5 100644 --- a/intersight/model/telemetry_druid_regex_filter_all_of.py +++ b/intersight/model/telemetry_druid_regex_filter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_regex_search_spec.py b/intersight/model/telemetry_druid_regex_search_spec.py index b57784b800..a8d6ad7ba2 100644 --- a/intersight/model/telemetry_druid_regex_search_spec.py +++ b/intersight/model/telemetry_druid_regex_search_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_regex_search_spec_all_of.py b/intersight/model/telemetry_druid_regex_search_spec_all_of.py index cd6d4644a0..a7f9775481 100644 --- a/intersight/model/telemetry_druid_regex_search_spec_all_of.py +++ b/intersight/model/telemetry_druid_regex_search_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_scan_request.py b/intersight/model/telemetry_druid_scan_request.py index 24bb8e3ef7..04d27ac152 100644 --- a/intersight/model/telemetry_druid_scan_request.py +++ b/intersight/model/telemetry_druid_scan_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/telemetry_druid_scan_request_all_of.py b/intersight/model/telemetry_druid_scan_request_all_of.py index 5bc9262676..c7eef0e657 100644 --- a/intersight/model/telemetry_druid_scan_request_all_of.py +++ b/intersight/model/telemetry_druid_scan_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/telemetry_druid_scan_result.py b/intersight/model/telemetry_druid_scan_result.py index 9f49c42179..6b3f69f86b 100644 --- a/intersight/model/telemetry_druid_scan_result.py +++ b/intersight/model/telemetry_druid_scan_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/telemetry_druid_search_request.py b/intersight/model/telemetry_druid_search_request.py index ee1d6975ba..74754f470c 100644 --- a/intersight/model/telemetry_druid_search_request.py +++ b/intersight/model/telemetry_druid_search_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/telemetry_druid_search_request_all_of.py b/intersight/model/telemetry_druid_search_request_all_of.py index 486ba24684..2ab30e8175 100644 --- a/intersight/model/telemetry_druid_search_request_all_of.py +++ b/intersight/model/telemetry_druid_search_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/telemetry_druid_search_result.py b/intersight/model/telemetry_druid_search_result.py index ceba0670ff..8a89422079 100644 --- a/intersight/model/telemetry_druid_search_result.py +++ b/intersight/model/telemetry_druid_search_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/telemetry_druid_segment_metadata_request.py b/intersight/model/telemetry_druid_segment_metadata_request.py index 03253b4a1a..282e63d5a3 100644 --- a/intersight/model/telemetry_druid_segment_metadata_request.py +++ b/intersight/model/telemetry_druid_segment_metadata_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/telemetry_druid_segment_metadata_request_all_of.py b/intersight/model/telemetry_druid_segment_metadata_request_all_of.py index 8806dbd379..9ff2a86339 100644 --- a/intersight/model/telemetry_druid_segment_metadata_request_all_of.py +++ b/intersight/model/telemetry_druid_segment_metadata_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/telemetry_druid_segment_metadata_result.py b/intersight/model/telemetry_druid_segment_metadata_result.py index c850b36e50..8de5acb8c7 100644 --- a/intersight/model/telemetry_druid_segment_metadata_result.py +++ b/intersight/model/telemetry_druid_segment_metadata_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/telemetry_druid_selector_filter.py b/intersight/model/telemetry_druid_selector_filter.py index cdd0355167..cfb7a86458 100644 --- a/intersight/model/telemetry_druid_selector_filter.py +++ b/intersight/model/telemetry_druid_selector_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_selector_filter_all_of.py b/intersight/model/telemetry_druid_selector_filter_all_of.py index 382283c7d6..215b077d60 100644 --- a/intersight/model/telemetry_druid_selector_filter_all_of.py +++ b/intersight/model/telemetry_druid_selector_filter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_string_any_aggregator.py b/intersight/model/telemetry_druid_string_any_aggregator.py index 7f0786102b..a9733ccd20 100644 --- a/intersight/model/telemetry_druid_string_any_aggregator.py +++ b/intersight/model/telemetry_druid_string_any_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_string_any_aggregator_all_of.py b/intersight/model/telemetry_druid_string_any_aggregator_all_of.py index 832fc428fa..d9959e920e 100644 --- a/intersight/model/telemetry_druid_string_any_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_string_any_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_string_first_last_aggregator.py b/intersight/model/telemetry_druid_string_first_last_aggregator.py index 8972b1ebe2..8ffa62a74e 100644 --- a/intersight/model/telemetry_druid_string_first_last_aggregator.py +++ b/intersight/model/telemetry_druid_string_first_last_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_string_first_last_aggregator_all_of.py b/intersight/model/telemetry_druid_string_first_last_aggregator_all_of.py index 9811ed749b..103c984bf4 100644 --- a/intersight/model/telemetry_druid_string_first_last_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_string_first_last_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_sum_aggregator.py b/intersight/model/telemetry_druid_sum_aggregator.py index f65d40b8ce..2a01190ac7 100644 --- a/intersight/model/telemetry_druid_sum_aggregator.py +++ b/intersight/model/telemetry_druid_sum_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_sum_aggregator_all_of.py b/intersight/model/telemetry_druid_sum_aggregator_all_of.py index 8655c1f322..297b15185a 100644 --- a/intersight/model/telemetry_druid_sum_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_sum_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_table_data_source.py b/intersight/model/telemetry_druid_table_data_source.py index 403427e933..b20e3ee60a 100644 --- a/intersight/model/telemetry_druid_table_data_source.py +++ b/intersight/model/telemetry_druid_table_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_table_data_source_all_of.py b/intersight/model/telemetry_druid_table_data_source_all_of.py index 15794886c8..39f8c8ca38 100644 --- a/intersight/model/telemetry_druid_table_data_source_all_of.py +++ b/intersight/model/telemetry_druid_table_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_theta_sketch_aggregator.py b/intersight/model/telemetry_druid_theta_sketch_aggregator.py index b02cc07dd8..96988ecef0 100644 --- a/intersight/model/telemetry_druid_theta_sketch_aggregator.py +++ b/intersight/model/telemetry_druid_theta_sketch_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_theta_sketch_aggregator_all_of.py b/intersight/model/telemetry_druid_theta_sketch_aggregator_all_of.py index 1cae053c6a..270358b49a 100644 --- a/intersight/model/telemetry_druid_theta_sketch_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_theta_sketch_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_theta_sketch_estimate_post_aggregator.py b/intersight/model/telemetry_druid_theta_sketch_estimate_post_aggregator.py index 5c55c1c361..8a4741f035 100644 --- a/intersight/model/telemetry_druid_theta_sketch_estimate_post_aggregator.py +++ b/intersight/model/telemetry_druid_theta_sketch_estimate_post_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_theta_sketch_estimate_post_aggregator_all_of.py b/intersight/model/telemetry_druid_theta_sketch_estimate_post_aggregator_all_of.py index d7a65559a7..becb2e8eab 100644 --- a/intersight/model/telemetry_druid_theta_sketch_estimate_post_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_theta_sketch_estimate_post_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_theta_sketch_operations_post_aggregator.py b/intersight/model/telemetry_druid_theta_sketch_operations_post_aggregator.py index eca0a68491..30e3650900 100644 --- a/intersight/model/telemetry_druid_theta_sketch_operations_post_aggregator.py +++ b/intersight/model/telemetry_druid_theta_sketch_operations_post_aggregator.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_theta_sketch_operations_post_aggregator_all_of.py b/intersight/model/telemetry_druid_theta_sketch_operations_post_aggregator_all_of.py index e1bed09d0c..47c9c7df53 100644 --- a/intersight/model/telemetry_druid_theta_sketch_operations_post_aggregator_all_of.py +++ b/intersight/model/telemetry_druid_theta_sketch_operations_post_aggregator_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_time_boundary_request.py b/intersight/model/telemetry_druid_time_boundary_request.py index 0623aff494..ee08a53366 100644 --- a/intersight/model/telemetry_druid_time_boundary_request.py +++ b/intersight/model/telemetry_druid_time_boundary_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/telemetry_druid_time_boundary_request_all_of.py b/intersight/model/telemetry_druid_time_boundary_request_all_of.py index e4e9d6285f..4b865f7d1e 100644 --- a/intersight/model/telemetry_druid_time_boundary_request_all_of.py +++ b/intersight/model/telemetry_druid_time_boundary_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/telemetry_druid_time_boundary_result.py b/intersight/model/telemetry_druid_time_boundary_result.py index a8635a9626..e280ca8b8a 100644 --- a/intersight/model/telemetry_druid_time_boundary_result.py +++ b/intersight/model/telemetry_druid_time_boundary_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/telemetry_druid_time_series_request.py b/intersight/model/telemetry_druid_time_series_request.py index 1d174671da..ff30a5ed3d 100644 --- a/intersight/model/telemetry_druid_time_series_request.py +++ b/intersight/model/telemetry_druid_time_series_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/telemetry_druid_time_series_request_all_of.py b/intersight/model/telemetry_druid_time_series_request_all_of.py index 96df1604d2..3a0f562c42 100644 --- a/intersight/model/telemetry_druid_time_series_request_all_of.py +++ b/intersight/model/telemetry_druid_time_series_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/telemetry_druid_top_n_metric_spec.py b/intersight/model/telemetry_druid_top_n_metric_spec.py index f1a64f46bb..decd687bb2 100644 --- a/intersight/model/telemetry_druid_top_n_metric_spec.py +++ b/intersight/model/telemetry_druid_top_n_metric_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_top_n_request.py b/intersight/model/telemetry_druid_top_n_request.py index 6c89eb26c6..095cef5db4 100644 --- a/intersight/model/telemetry_druid_top_n_request.py +++ b/intersight/model/telemetry_druid_top_n_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/telemetry_druid_top_n_request_all_of.py b/intersight/model/telemetry_druid_top_n_request_all_of.py index 085c902200..f73fcc8d48 100644 --- a/intersight/model/telemetry_druid_top_n_request_all_of.py +++ b/intersight/model/telemetry_druid_top_n_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/telemetry_druid_top_n_result.py b/intersight/model/telemetry_druid_top_n_result.py index 43def25b0b..9b6df3fc97 100644 --- a/intersight/model/telemetry_druid_top_n_result.py +++ b/intersight/model/telemetry_druid_top_n_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/telemetry_druid_union_data_source.py b/intersight/model/telemetry_druid_union_data_source.py index 9009c17cc7..a0acc9eda9 100644 --- a/intersight/model/telemetry_druid_union_data_source.py +++ b/intersight/model/telemetry_druid_union_data_source.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/telemetry_druid_union_data_source_all_of.py b/intersight/model/telemetry_druid_union_data_source_all_of.py index 8f7ba2c7b2..3d0ca382e5 100644 --- a/intersight/model/telemetry_druid_union_data_source_all_of.py +++ b/intersight/model/telemetry_druid_union_data_source_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/template_transformation_stage.py b/intersight/model/template_transformation_stage.py index e20eda606a..e0710c4c33 100644 --- a/intersight/model/template_transformation_stage.py +++ b/intersight/model/template_transformation_stage.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/template_transformation_stage_all_of.py b/intersight/model/template_transformation_stage_all_of.py index 86d591961b..d32bc49e38 100644 --- a/intersight/model/template_transformation_stage_all_of.py +++ b/intersight/model/template_transformation_stage_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/terminal_audit_log.py b/intersight/model/terminal_audit_log.py index d58675015e..ca3fa7f6f8 100644 --- a/intersight/model/terminal_audit_log.py +++ b/intersight/model/terminal_audit_log.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/terminal_audit_log_all_of.py b/intersight/model/terminal_audit_log_all_of.py index 53676a0684..63d1618290 100644 --- a/intersight/model/terminal_audit_log_all_of.py +++ b/intersight/model/terminal_audit_log_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/terminal_audit_log_list.py b/intersight/model/terminal_audit_log_list.py index a1266c7a30..04db572ab4 100644 --- a/intersight/model/terminal_audit_log_list.py +++ b/intersight/model/terminal_audit_log_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/terminal_audit_log_list_all_of.py b/intersight/model/terminal_audit_log_list_all_of.py index 60fc898fdf..99b1957665 100644 --- a/intersight/model/terminal_audit_log_list_all_of.py +++ b/intersight/model/terminal_audit_log_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/terminal_audit_log_response.py b/intersight/model/terminal_audit_log_response.py index eaa1d9d2e9..196b717680 100644 --- a/intersight/model/terminal_audit_log_response.py +++ b/intersight/model/terminal_audit_log_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/thermal_policy.py b/intersight/model/thermal_policy.py index f640abbd21..46b8379cd7 100644 --- a/intersight/model/thermal_policy.py +++ b/intersight/model/thermal_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/thermal_policy_all_of.py b/intersight/model/thermal_policy_all_of.py index def705d9ab..4b01195fba 100644 --- a/intersight/model/thermal_policy_all_of.py +++ b/intersight/model/thermal_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/thermal_policy_list.py b/intersight/model/thermal_policy_list.py index a5391d4ba4..294391635d 100644 --- a/intersight/model/thermal_policy_list.py +++ b/intersight/model/thermal_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/thermal_policy_list_all_of.py b/intersight/model/thermal_policy_list_all_of.py index 4f9a96b42d..7629d10ab2 100644 --- a/intersight/model/thermal_policy_list_all_of.py +++ b/intersight/model/thermal_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/thermal_policy_response.py b/intersight/model/thermal_policy_response.py index ac7e7632cb..b13554dea9 100644 --- a/intersight/model/thermal_policy_response.py +++ b/intersight/model/thermal_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/top_system.py b/intersight/model/top_system.py index e415fc57a7..d07aaba52d 100644 --- a/intersight/model/top_system.py +++ b/intersight/model/top_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/top_system_all_of.py b/intersight/model/top_system_all_of.py index 2b4f482f6a..52a7fb2590 100644 --- a/intersight/model/top_system_all_of.py +++ b/intersight/model/top_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/top_system_list.py b/intersight/model/top_system_list.py index f197e6b9e6..1f7d647107 100644 --- a/intersight/model/top_system_list.py +++ b/intersight/model/top_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/top_system_list_all_of.py b/intersight/model/top_system_list_all_of.py index 74fae96139..85e9c5541a 100644 --- a/intersight/model/top_system_list_all_of.py +++ b/intersight/model/top_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/top_system_relationship.py b/intersight/model/top_system_relationship.py index 88f7d3947f..97981244b5 100644 --- a/intersight/model/top_system_relationship.py +++ b/intersight/model/top_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 """ @@ -84,6 +84,8 @@ class TopSystemRelationship(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 TopSystemRelationship(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 TopSystemRelationship(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 TopSystemRelationship(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 TopSystemRelationship(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 TopSystemRelationship(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 TopSystemRelationship(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 TopSystemRelationship(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 TopSystemRelationship(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 TopSystemRelationship(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/top_system_response.py b/intersight/model/top_system_response.py index 1009a98627..6ef20a099b 100644 --- a/intersight/model/top_system_response.py +++ b/intersight/model/top_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/tunneling_tunnel.py b/intersight/model/tunneling_tunnel.py index a9736015ae..f43e74e495 100644 --- a/intersight/model/tunneling_tunnel.py +++ b/intersight/model/tunneling_tunnel.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/tunneling_tunnel_all_of.py b/intersight/model/tunneling_tunnel_all_of.py index f56d4fd1a6..9bbd63d9d7 100644 --- a/intersight/model/tunneling_tunnel_all_of.py +++ b/intersight/model/tunneling_tunnel_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/ucsd_backup_info.py b/intersight/model/ucsd_backup_info.py index 72db06b68c..277bd128a3 100644 --- a/intersight/model/ucsd_backup_info.py +++ b/intersight/model/ucsd_backup_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/ucsd_backup_info_all_of.py b/intersight/model/ucsd_backup_info_all_of.py index 9cba7d7512..0bb49c9f74 100644 --- a/intersight/model/ucsd_backup_info_all_of.py +++ b/intersight/model/ucsd_backup_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/ucsd_backup_info_list.py b/intersight/model/ucsd_backup_info_list.py index 8bf9ca27b5..d68d69c721 100644 --- a/intersight/model/ucsd_backup_info_list.py +++ b/intersight/model/ucsd_backup_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/ucsd_backup_info_list_all_of.py b/intersight/model/ucsd_backup_info_list_all_of.py index af0d9ac55f..ed809d9a2a 100644 --- a/intersight/model/ucsd_backup_info_list_all_of.py +++ b/intersight/model/ucsd_backup_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/ucsd_backup_info_response.py b/intersight/model/ucsd_backup_info_response.py index 8b2e126303..37c012811f 100644 --- a/intersight/model/ucsd_backup_info_response.py +++ b/intersight/model/ucsd_backup_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/ucsd_connector_pack.py b/intersight/model/ucsd_connector_pack.py index 6a1c2fd289..309133faf7 100644 --- a/intersight/model/ucsd_connector_pack.py +++ b/intersight/model/ucsd_connector_pack.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/ucsd_connector_pack_all_of.py b/intersight/model/ucsd_connector_pack_all_of.py index adbc45b891..3c28faa619 100644 --- a/intersight/model/ucsd_connector_pack_all_of.py +++ b/intersight/model/ucsd_connector_pack_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/ucsd_ucsd_restore_parameters.py b/intersight/model/ucsd_ucsd_restore_parameters.py index b7b4cfcb58..0dabe68d5c 100644 --- a/intersight/model/ucsd_ucsd_restore_parameters.py +++ b/intersight/model/ucsd_ucsd_restore_parameters.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/ucsd_ucsd_restore_parameters_all_of.py b/intersight/model/ucsd_ucsd_restore_parameters_all_of.py index 03fd19d7ac..e3d94fc399 100644 --- a/intersight/model/ucsd_ucsd_restore_parameters_all_of.py +++ b/intersight/model/ucsd_ucsd_restore_parameters_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/ucsdconnector_rest_client_message.py b/intersight/model/ucsdconnector_rest_client_message.py index f31a9fe7e1..3b13944497 100644 --- a/intersight/model/ucsdconnector_rest_client_message.py +++ b/intersight/model/ucsdconnector_rest_client_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/ucsdconnector_rest_client_message_all_of.py b/intersight/model/ucsdconnector_rest_client_message_all_of.py index a03065a6c9..122b4228de 100644 --- a/intersight/model/ucsdconnector_rest_client_message_all_of.py +++ b/intersight/model/ucsdconnector_rest_client_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/uuidpool_block.py b/intersight/model/uuidpool_block.py index 2b9cd43306..71c5ed2e93 100644 --- a/intersight/model/uuidpool_block.py +++ b/intersight/model/uuidpool_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/uuidpool_block_all_of.py b/intersight/model/uuidpool_block_all_of.py index 0dbfa600cd..c865870b85 100644 --- a/intersight/model/uuidpool_block_all_of.py +++ b/intersight/model/uuidpool_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/uuidpool_block_list.py b/intersight/model/uuidpool_block_list.py index 140033c45f..2f3f89a46e 100644 --- a/intersight/model/uuidpool_block_list.py +++ b/intersight/model/uuidpool_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/uuidpool_block_list_all_of.py b/intersight/model/uuidpool_block_list_all_of.py index 018b573c75..396a8486fe 100644 --- a/intersight/model/uuidpool_block_list_all_of.py +++ b/intersight/model/uuidpool_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/uuidpool_block_relationship.py b/intersight/model/uuidpool_block_relationship.py index 5dc8f95769..a609e66689 100644 --- a/intersight/model/uuidpool_block_relationship.py +++ b/intersight/model/uuidpool_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 UuidpoolBlockRelationship(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 UuidpoolBlockRelationship(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 UuidpoolBlockRelationship(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 UuidpoolBlockRelationship(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 UuidpoolBlockRelationship(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 UuidpoolBlockRelationship(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 UuidpoolBlockRelationship(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 UuidpoolBlockRelationship(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 UuidpoolBlockRelationship(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 UuidpoolBlockRelationship(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/uuidpool_block_response.py b/intersight/model/uuidpool_block_response.py index fefa210feb..941f027592 100644 --- a/intersight/model/uuidpool_block_response.py +++ b/intersight/model/uuidpool_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/uuidpool_pool.py b/intersight/model/uuidpool_pool.py index ff7d2115a9..16897273fc 100644 --- a/intersight/model/uuidpool_pool.py +++ b/intersight/model/uuidpool_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/uuidpool_pool_all_of.py b/intersight/model/uuidpool_pool_all_of.py index 98a1304f55..d0f641941b 100644 --- a/intersight/model/uuidpool_pool_all_of.py +++ b/intersight/model/uuidpool_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/uuidpool_pool_list.py b/intersight/model/uuidpool_pool_list.py index 3ac41aecff..6c874106dc 100644 --- a/intersight/model/uuidpool_pool_list.py +++ b/intersight/model/uuidpool_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/uuidpool_pool_list_all_of.py b/intersight/model/uuidpool_pool_list_all_of.py index 13f3fa4703..f8bc1c4e46 100644 --- a/intersight/model/uuidpool_pool_list_all_of.py +++ b/intersight/model/uuidpool_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/uuidpool_pool_member.py b/intersight/model/uuidpool_pool_member.py index 6eccafc293..fd1f59f110 100644 --- a/intersight/model/uuidpool_pool_member.py +++ b/intersight/model/uuidpool_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/uuidpool_pool_member_all_of.py b/intersight/model/uuidpool_pool_member_all_of.py index 77908f5fd5..bee3655c76 100644 --- a/intersight/model/uuidpool_pool_member_all_of.py +++ b/intersight/model/uuidpool_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/uuidpool_pool_member_list.py b/intersight/model/uuidpool_pool_member_list.py index d8f253d621..79d81c4166 100644 --- a/intersight/model/uuidpool_pool_member_list.py +++ b/intersight/model/uuidpool_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/uuidpool_pool_member_list_all_of.py b/intersight/model/uuidpool_pool_member_list_all_of.py index 4192b3bb32..ec045fc25e 100644 --- a/intersight/model/uuidpool_pool_member_list_all_of.py +++ b/intersight/model/uuidpool_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/uuidpool_pool_member_relationship.py b/intersight/model/uuidpool_pool_member_relationship.py index df4ff02cc8..8153b9afb9 100644 --- a/intersight/model/uuidpool_pool_member_relationship.py +++ b/intersight/model/uuidpool_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 UuidpoolPoolMemberRelationship(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 UuidpoolPoolMemberRelationship(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 UuidpoolPoolMemberRelationship(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 UuidpoolPoolMemberRelationship(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 UuidpoolPoolMemberRelationship(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 UuidpoolPoolMemberRelationship(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 UuidpoolPoolMemberRelationship(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 UuidpoolPoolMemberRelationship(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 UuidpoolPoolMemberRelationship(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 UuidpoolPoolMemberRelationship(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/uuidpool_pool_member_response.py b/intersight/model/uuidpool_pool_member_response.py index eb3398f5fe..b3730b4720 100644 --- a/intersight/model/uuidpool_pool_member_response.py +++ b/intersight/model/uuidpool_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/uuidpool_pool_relationship.py b/intersight/model/uuidpool_pool_relationship.py index b6ff8bee61..33a85b7c0b 100644 --- a/intersight/model/uuidpool_pool_relationship.py +++ b/intersight/model/uuidpool_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 UuidpoolPoolRelationship(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 UuidpoolPoolRelationship(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 UuidpoolPoolRelationship(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 UuidpoolPoolRelationship(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 UuidpoolPoolRelationship(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 UuidpoolPoolRelationship(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 UuidpoolPoolRelationship(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 UuidpoolPoolRelationship(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 UuidpoolPoolRelationship(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 UuidpoolPoolRelationship(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/uuidpool_pool_response.py b/intersight/model/uuidpool_pool_response.py index 80cec5576d..2a0b8deb37 100644 --- a/intersight/model/uuidpool_pool_response.py +++ b/intersight/model/uuidpool_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/uuidpool_universe.py b/intersight/model/uuidpool_universe.py index 00978976bf..e314426bac 100644 --- a/intersight/model/uuidpool_universe.py +++ b/intersight/model/uuidpool_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/uuidpool_universe_all_of.py b/intersight/model/uuidpool_universe_all_of.py index 46a7bc1c1c..931ae2bf97 100644 --- a/intersight/model/uuidpool_universe_all_of.py +++ b/intersight/model/uuidpool_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/uuidpool_universe_list.py b/intersight/model/uuidpool_universe_list.py index 9ffb9952cf..23cd456c33 100644 --- a/intersight/model/uuidpool_universe_list.py +++ b/intersight/model/uuidpool_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/uuidpool_universe_list_all_of.py b/intersight/model/uuidpool_universe_list_all_of.py index 97fb66a503..b08d51660e 100644 --- a/intersight/model/uuidpool_universe_list_all_of.py +++ b/intersight/model/uuidpool_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/uuidpool_universe_relationship.py b/intersight/model/uuidpool_universe_relationship.py index 43a07c2aca..a884b92601 100644 --- a/intersight/model/uuidpool_universe_relationship.py +++ b/intersight/model/uuidpool_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 UuidpoolUniverseRelationship(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 UuidpoolUniverseRelationship(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 UuidpoolUniverseRelationship(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 UuidpoolUniverseRelationship(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 UuidpoolUniverseRelationship(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 UuidpoolUniverseRelationship(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 UuidpoolUniverseRelationship(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 UuidpoolUniverseRelationship(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 UuidpoolUniverseRelationship(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 UuidpoolUniverseRelationship(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/uuidpool_universe_response.py b/intersight/model/uuidpool_universe_response.py index 4cb77ad4dc..615acb3e17 100644 --- a/intersight/model/uuidpool_universe_response.py +++ b/intersight/model/uuidpool_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/uuidpool_uuid_block.py b/intersight/model/uuidpool_uuid_block.py index a0ff911c52..5709df66c9 100644 --- a/intersight/model/uuidpool_uuid_block.py +++ b/intersight/model/uuidpool_uuid_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/uuidpool_uuid_block_all_of.py b/intersight/model/uuidpool_uuid_block_all_of.py index 0e2efa6d5a..ea08604ab6 100644 --- a/intersight/model/uuidpool_uuid_block_all_of.py +++ b/intersight/model/uuidpool_uuid_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/uuidpool_uuid_lease.py b/intersight/model/uuidpool_uuid_lease.py index 44413ca5f8..ddad9cca8f 100644 --- a/intersight/model/uuidpool_uuid_lease.py +++ b/intersight/model/uuidpool_uuid_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 """ @@ -29,19 +29,19 @@ def lazy_import(): 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.pool_abstract_lease import PoolAbstractLease from intersight.model.uuidpool_pool_member_relationship import UuidpoolPoolMemberRelationship from intersight.model.uuidpool_pool_relationship import UuidpoolPoolRelationship from intersight.model.uuidpool_universe_relationship import UuidpoolUniverseRelationship from intersight.model.uuidpool_uuid_lease_all_of import UuidpoolUuidLeaseAllOf globals()['DisplayNames'] = DisplayNames - globals()['MoBaseMo'] = MoBaseMo globals()['MoBaseMoRelationship'] = MoBaseMoRelationship globals()['MoTag'] = MoTag globals()['MoVersionContext'] = MoVersionContext + globals()['PoolAbstractLease'] = PoolAbstractLease globals()['UuidpoolPoolMemberRelationship'] = UuidpoolPoolMemberRelationship globals()['UuidpoolPoolRelationship'] = UuidpoolPoolRelationship globals()['UuidpoolUniverseRelationship'] = UuidpoolUniverseRelationship @@ -79,6 +79,10 @@ class UuidpoolUuidLease(ModelComposed): ('object_type',): { 'UUIDPOOL.UUIDLEASE': "uuidpool.UuidLease", }, + ('allocation_type',): { + 'DYNAMIC': "dynamic", + 'STATIC': "static", + }, } validations = { @@ -132,6 +136,7 @@ def openapi_types(): 'parent': (MoBaseMoRelationship,), # noqa: E501 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501 'display_names': (DisplayNames,), # noqa: E501 + 'allocation_type': (str,), # noqa: E501 } @cached_property @@ -163,6 +168,7 @@ def discriminator(): 'parent': 'Parent', # noqa: E501 'permission_resources': 'PermissionResources', # noqa: E501 'display_names': 'DisplayNames', # noqa: E501 + 'allocation_type': 'AllocationType', # noqa: E501 } required_properties = set([ @@ -234,6 +240,7 @@ def __init__(self, *args, **kwargs): # 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 + allocation_type (str): Type of the lease allocation either static or dynamic (i.e via pool). * `dynamic` - Identifiers to be allocated by system. * `static` - Identifiers are assigned by the user.. [optional] if omitted the server will use the default value of "dynamic" # noqa: E501 """ class_id = kwargs.get('class_id', "uuidpool.UuidLease") @@ -307,7 +314,7 @@ def _composed_schemas(): 'anyOf': [ ], 'allOf': [ - MoBaseMo, + PoolAbstractLease, UuidpoolUuidLeaseAllOf, ], 'oneOf': [ diff --git a/intersight/model/uuidpool_uuid_lease_all_of.py b/intersight/model/uuidpool_uuid_lease_all_of.py index 6a3840aba4..d3a63b61dc 100644 --- a/intersight/model/uuidpool_uuid_lease_all_of.py +++ b/intersight/model/uuidpool_uuid_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/uuidpool_uuid_lease_list.py b/intersight/model/uuidpool_uuid_lease_list.py index 89787a2d35..f729060a75 100644 --- a/intersight/model/uuidpool_uuid_lease_list.py +++ b/intersight/model/uuidpool_uuid_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/uuidpool_uuid_lease_list_all_of.py b/intersight/model/uuidpool_uuid_lease_list_all_of.py index bce8e5a630..f960230e12 100644 --- a/intersight/model/uuidpool_uuid_lease_list_all_of.py +++ b/intersight/model/uuidpool_uuid_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/uuidpool_uuid_lease_relationship.py b/intersight/model/uuidpool_uuid_lease_relationship.py index 4ec5058ac6..50eb62482e 100644 --- a/intersight/model/uuidpool_uuid_lease_relationship.py +++ b/intersight/model/uuidpool_uuid_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 """ @@ -76,8 +76,14 @@ class UuidpoolUuidLeaseRelationship(ModelComposed): ('class_id',): { 'MO.MOREF': "mo.MoRef", }, + ('allocation_type',): { + 'DYNAMIC': "dynamic", + 'STATIC': "static", + }, ('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 +100,7 @@ class UuidpoolUuidLeaseRelationship(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 +149,12 @@ class UuidpoolUuidLeaseRelationship(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 +218,6 @@ class UuidpoolUuidLeaseRelationship(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 +226,7 @@ class UuidpoolUuidLeaseRelationship(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 +475,7 @@ class UuidpoolUuidLeaseRelationship(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 +645,11 @@ class UuidpoolUuidLeaseRelationship(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 +765,7 @@ class UuidpoolUuidLeaseRelationship(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 +797,7 @@ class UuidpoolUuidLeaseRelationship(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 +830,14 @@ class UuidpoolUuidLeaseRelationship(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", }, } @@ -871,6 +888,7 @@ def openapi_types(): 'parent': (MoBaseMoRelationship,), # noqa: E501 'permission_resources': ([MoBaseMoRelationship], none_type,), # noqa: E501 'display_names': (DisplayNames,), # noqa: E501 + 'allocation_type': (str,), # noqa: E501 'uuid': (str,), # noqa: E501 'assigned_to_entity': (MoBaseMoRelationship,), # noqa: E501 'pool': (UuidpoolPoolRelationship,), # noqa: E501 @@ -907,6 +925,7 @@ def discriminator(): 'parent': 'Parent', # noqa: E501 'permission_resources': 'PermissionResources', # noqa: E501 'display_names': 'DisplayNames', # noqa: E501 + 'allocation_type': 'AllocationType', # noqa: E501 'uuid': 'Uuid', # noqa: E501 'assigned_to_entity': 'AssignedToEntity', # noqa: E501 'pool': 'Pool', # noqa: E501 @@ -980,6 +999,7 @@ def __init__(self, *args, **kwargs): # 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 + allocation_type (str): Type of the lease allocation either static or dynamic (i.e via pool). * `dynamic` - Identifiers to be allocated by system. * `static` - Identifiers are assigned by the user.. [optional] if omitted the server will use the default value of "dynamic" # noqa: E501 uuid (str): UUID Prefix+Suffix numbers.. [optional] # noqa: E501 assigned_to_entity (MoBaseMoRelationship): [optional] # noqa: E501 pool (UuidpoolPoolRelationship): [optional] # noqa: E501 diff --git a/intersight/model/uuidpool_uuid_lease_response.py b/intersight/model/uuidpool_uuid_lease_response.py index 2856e0315e..a980e354bf 100644 --- a/intersight/model/uuidpool_uuid_lease_response.py +++ b/intersight/model/uuidpool_uuid_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/views_view.py b/intersight/model/views_view.py index afb3f0fa68..bc1bb7c3f3 100644 --- a/intersight/model/views_view.py +++ b/intersight/model/views_view.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -75,6 +75,8 @@ class ViewsView(ModelComposed): allowed_values = { ('class_id',): { 'AAA.AUDITRECORD': "aaa.AuditRecord", + 'AAA.RETENTIONCONFIG': "aaa.RetentionConfig", + 'AAA.RETENTIONPOLICY': "aaa.RetentionPolicy", 'ACCESS.POLICY': "access.Policy", 'ADAPTER.CONFIGPOLICY': "adapter.ConfigPolicy", 'ADAPTER.EXTETHINTERFACE': "adapter.ExtEthInterface", @@ -91,6 +93,7 @@ class ViewsView(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", @@ -139,9 +142,12 @@ class ViewsView(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", @@ -205,10 +211,6 @@ class ViewsView(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", @@ -217,6 +219,7 @@ class ViewsView(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", @@ -465,6 +468,7 @@ class ViewsView(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", @@ -634,6 +638,11 @@ class ViewsView(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", @@ -749,6 +758,7 @@ class ViewsView(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", @@ -780,6 +790,7 @@ class ViewsView(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", @@ -812,15 +823,19 @@ class ViewsView(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", }, ('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", @@ -837,6 +852,7 @@ class ViewsView(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", @@ -885,9 +901,12 @@ class ViewsView(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", @@ -951,10 +970,6 @@ class ViewsView(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", @@ -963,6 +978,7 @@ class ViewsView(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", @@ -1211,6 +1227,7 @@ class ViewsView(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", @@ -1380,6 +1397,11 @@ class ViewsView(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", @@ -1495,6 +1517,7 @@ class ViewsView(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", @@ -1526,6 +1549,7 @@ class ViewsView(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", @@ -1558,12 +1582,14 @@ class ViewsView(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/virtualization_action_info.py b/intersight/model/virtualization_action_info.py index 76932bcc15..7f32e94a82 100644 --- a/intersight/model/virtualization_action_info.py +++ b/intersight/model/virtualization_action_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/virtualization_action_info_all_of.py b/intersight/model/virtualization_action_info_all_of.py index 86975ab5ac..6b7bae8f7c 100644 --- a/intersight/model/virtualization_action_info_all_of.py +++ b/intersight/model/virtualization_action_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/virtualization_base_cluster.py b/intersight/model/virtualization_base_cluster.py index 6817d79972..be8e0195e9 100644 --- a/intersight/model/virtualization_base_cluster.py +++ b/intersight/model/virtualization_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/virtualization_base_cluster_all_of.py b/intersight/model/virtualization_base_cluster_all_of.py index 4c7414f742..772ad3f4b5 100644 --- a/intersight/model/virtualization_base_cluster_all_of.py +++ b/intersight/model/virtualization_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/virtualization_base_cluster_relationship.py b/intersight/model/virtualization_base_cluster_relationship.py index 2711ad6d53..a119197dd4 100644 --- a/intersight/model/virtualization_base_cluster_relationship.py +++ b/intersight/model/virtualization_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 """ @@ -88,6 +88,8 @@ class VirtualizationBaseClusterRelationship(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 VirtualizationBaseClusterRelationship(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 VirtualizationBaseClusterRelationship(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 VirtualizationBaseClusterRelationship(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 VirtualizationBaseClusterRelationship(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 VirtualizationBaseClusterRelationship(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 VirtualizationBaseClusterRelationship(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 VirtualizationBaseClusterRelationship(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 VirtualizationBaseClusterRelationship(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 VirtualizationBaseClusterRelationship(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/virtualization_base_custom_spec.py b/intersight/model/virtualization_base_custom_spec.py index c4dd5e3dcd..35bfad0bab 100644 --- a/intersight/model/virtualization_base_custom_spec.py +++ b/intersight/model/virtualization_base_custom_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -126,6 +126,7 @@ class VirtualizationBaseCustomSpec(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", @@ -166,7 +167,6 @@ class VirtualizationBaseCustomSpec(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", @@ -302,6 +302,7 @@ class VirtualizationBaseCustomSpec(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", @@ -310,6 +311,8 @@ class VirtualizationBaseCustomSpec(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", @@ -321,6 +324,7 @@ class VirtualizationBaseCustomSpec(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", @@ -332,6 +336,7 @@ class VirtualizationBaseCustomSpec(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", @@ -389,6 +394,8 @@ class VirtualizationBaseCustomSpec(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", @@ -398,6 +405,7 @@ class VirtualizationBaseCustomSpec(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", @@ -633,6 +641,7 @@ class VirtualizationBaseCustomSpec(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", @@ -673,7 +682,6 @@ class VirtualizationBaseCustomSpec(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", @@ -809,6 +817,7 @@ class VirtualizationBaseCustomSpec(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", @@ -817,6 +826,8 @@ class VirtualizationBaseCustomSpec(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", @@ -828,6 +839,7 @@ class VirtualizationBaseCustomSpec(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", @@ -839,6 +851,7 @@ class VirtualizationBaseCustomSpec(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", @@ -896,6 +909,8 @@ class VirtualizationBaseCustomSpec(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", @@ -905,6 +920,7 @@ class VirtualizationBaseCustomSpec(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/virtualization_base_datacenter.py b/intersight/model/virtualization_base_datacenter.py index 30462df6a0..ffabdc2410 100644 --- a/intersight/model/virtualization_base_datacenter.py +++ b/intersight/model/virtualization_base_datacenter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_datacenter_all_of.py b/intersight/model/virtualization_base_datacenter_all_of.py index e6b0cba823..e72763ffb8 100644 --- a/intersight/model/virtualization_base_datacenter_all_of.py +++ b/intersight/model/virtualization_base_datacenter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_datastore.py b/intersight/model/virtualization_base_datastore.py index a2ab72ac7c..a001564a79 100644 --- a/intersight/model/virtualization_base_datastore.py +++ b/intersight/model/virtualization_base_datastore.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_datastore_all_of.py b/intersight/model/virtualization_base_datastore_all_of.py index 067df0821a..d7d3600549 100644 --- a/intersight/model/virtualization_base_datastore_all_of.py +++ b/intersight/model/virtualization_base_datastore_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_datastore_cluster.py b/intersight/model/virtualization_base_datastore_cluster.py index 38ad09adcc..9f833c8d37 100644 --- a/intersight/model/virtualization_base_datastore_cluster.py +++ b/intersight/model/virtualization_base_datastore_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/virtualization_base_datastore_cluster_all_of.py b/intersight/model/virtualization_base_datastore_cluster_all_of.py index 6db2d9910f..388eb31b0f 100644 --- a/intersight/model/virtualization_base_datastore_cluster_all_of.py +++ b/intersight/model/virtualization_base_datastore_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/virtualization_base_distributed_network.py b/intersight/model/virtualization_base_distributed_network.py index 417f143b8a..d8b18c3c2a 100644 --- a/intersight/model/virtualization_base_distributed_network.py +++ b/intersight/model/virtualization_base_distributed_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/virtualization_base_distributed_switch.py b/intersight/model/virtualization_base_distributed_switch.py index 4581360852..192c920d65 100644 --- a/intersight/model/virtualization_base_distributed_switch.py +++ b/intersight/model/virtualization_base_distributed_switch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_dvswitch.py b/intersight/model/virtualization_base_dvswitch.py index 1a0a85c848..a9adbbdbf8 100644 --- a/intersight/model/virtualization_base_dvswitch.py +++ b/intersight/model/virtualization_base_dvswitch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_folder.py b/intersight/model/virtualization_base_folder.py index 9005c20d58..3bb4224673 100644 --- a/intersight/model/virtualization_base_folder.py +++ b/intersight/model/virtualization_base_folder.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_folder_all_of.py b/intersight/model/virtualization_base_folder_all_of.py index c09d96e0de..dc66ed0f3c 100644 --- a/intersight/model/virtualization_base_folder_all_of.py +++ b/intersight/model/virtualization_base_folder_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_host.py b/intersight/model/virtualization_base_host.py index 9ae0c41ae7..1906365d05 100644 --- a/intersight/model/virtualization_base_host.py +++ b/intersight/model/virtualization_base_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/virtualization_base_host_all_of.py b/intersight/model/virtualization_base_host_all_of.py index e20ee2509e..a5b8e6cfa4 100644 --- a/intersight/model/virtualization_base_host_all_of.py +++ b/intersight/model/virtualization_base_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/virtualization_base_host_relationship.py b/intersight/model/virtualization_base_host_relationship.py index 96d136cb49..6416729566 100644 --- a/intersight/model/virtualization_base_host_relationship.py +++ b/intersight/model/virtualization_base_host_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 """ @@ -96,6 +96,8 @@ class VirtualizationBaseHostRelationship(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", @@ -112,6 +114,7 @@ class VirtualizationBaseHostRelationship(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", @@ -160,9 +163,12 @@ class VirtualizationBaseHostRelationship(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", @@ -226,10 +232,6 @@ class VirtualizationBaseHostRelationship(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", @@ -238,6 +240,7 @@ class VirtualizationBaseHostRelationship(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", @@ -486,6 +489,7 @@ class VirtualizationBaseHostRelationship(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", @@ -655,6 +659,11 @@ class VirtualizationBaseHostRelationship(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", @@ -770,6 +779,7 @@ class VirtualizationBaseHostRelationship(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", @@ -801,6 +811,7 @@ class VirtualizationBaseHostRelationship(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", @@ -833,12 +844,14 @@ class VirtualizationBaseHostRelationship(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/virtualization_base_hypervisor_manager.py b/intersight/model/virtualization_base_hypervisor_manager.py index 50b17bec2b..b4fe815caf 100644 --- a/intersight/model/virtualization_base_hypervisor_manager.py +++ b/intersight/model/virtualization_base_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/virtualization_base_hypervisor_manager_all_of.py b/intersight/model/virtualization_base_hypervisor_manager_all_of.py index 37d0701b59..b65fc25219 100644 --- a/intersight/model/virtualization_base_hypervisor_manager_all_of.py +++ b/intersight/model/virtualization_base_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/virtualization_base_kernel_network.py b/intersight/model/virtualization_base_kernel_network.py index ca2d9cf73c..c002f5f108 100644 --- a/intersight/model/virtualization_base_kernel_network.py +++ b/intersight/model/virtualization_base_kernel_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/virtualization_base_network.py b/intersight/model/virtualization_base_network.py index 976571d0d2..6f7cf0d9c6 100644 --- a/intersight/model/virtualization_base_network.py +++ b/intersight/model/virtualization_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/virtualization_base_network_all_of.py b/intersight/model/virtualization_base_network_all_of.py index 2b568a05eb..f2f81bd355 100644 --- a/intersight/model/virtualization_base_network_all_of.py +++ b/intersight/model/virtualization_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/virtualization_base_network_port.py b/intersight/model/virtualization_base_network_port.py index eb8a596429..f73f3b9f40 100644 --- a/intersight/model/virtualization_base_network_port.py +++ b/intersight/model/virtualization_base_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/virtualization_base_network_port_all_of.py b/intersight/model/virtualization_base_network_port_all_of.py index 8be463c2cd..ddfa07ce6e 100644 --- a/intersight/model/virtualization_base_network_port_all_of.py +++ b/intersight/model/virtualization_base_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/virtualization_base_network_relationship.py b/intersight/model/virtualization_base_network_relationship.py index d4d82ab72d..1baece7a87 100644 --- a/intersight/model/virtualization_base_network_relationship.py +++ b/intersight/model/virtualization_base_network_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 VirtualizationBaseNetworkRelationship(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 VirtualizationBaseNetworkRelationship(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 VirtualizationBaseNetworkRelationship(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 VirtualizationBaseNetworkRelationship(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 VirtualizationBaseNetworkRelationship(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 VirtualizationBaseNetworkRelationship(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 VirtualizationBaseNetworkRelationship(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 VirtualizationBaseNetworkRelationship(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 VirtualizationBaseNetworkRelationship(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 VirtualizationBaseNetworkRelationship(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/virtualization_base_physical_network_interface.py b/intersight/model/virtualization_base_physical_network_interface.py index 537ca4c083..8c046fba16 100644 --- a/intersight/model/virtualization_base_physical_network_interface.py +++ b/intersight/model/virtualization_base_physical_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/virtualization_base_physical_network_interface_all_of.py b/intersight/model/virtualization_base_physical_network_interface_all_of.py index 7defde0592..c105003ce7 100644 --- a/intersight/model/virtualization_base_physical_network_interface_all_of.py +++ b/intersight/model/virtualization_base_physical_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/virtualization_base_placement.py b/intersight/model/virtualization_base_placement.py index 3324019586..f32e8966c9 100644 --- a/intersight/model/virtualization_base_placement.py +++ b/intersight/model/virtualization_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/virtualization_base_placement_all_of.py b/intersight/model/virtualization_base_placement_all_of.py index 6c7d5a8eb7..48baea5504 100644 --- a/intersight/model/virtualization_base_placement_all_of.py +++ b/intersight/model/virtualization_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/virtualization_base_source_device.py b/intersight/model/virtualization_base_source_device.py index aa5786513d..15672189d5 100644 --- a/intersight/model/virtualization_base_source_device.py +++ b/intersight/model/virtualization_base_source_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 """ @@ -72,6 +72,7 @@ def lazy_import(): from intersight.model.virtualization_base_switch import VirtualizationBaseSwitch from intersight.model.virtualization_base_virtual_disk import VirtualizationBaseVirtualDisk from intersight.model.virtualization_base_virtual_machine import VirtualizationBaseVirtualMachine + from intersight.model.virtualization_base_virtual_machine_snapshot import VirtualizationBaseVirtualMachineSnapshot from intersight.model.virtualization_base_virtual_network import VirtualizationBaseVirtualNetwork from intersight.model.virtualization_base_virtual_network_interface import VirtualizationBaseVirtualNetworkInterface from intersight.model.virtualization_base_virtual_network_interface_card import VirtualizationBaseVirtualNetworkInterfaceCard @@ -90,6 +91,7 @@ def lazy_import(): from intersight.model.virtualization_vmware_uplink_port import VirtualizationVmwareUplinkPort from intersight.model.virtualization_vmware_virtual_disk import VirtualizationVmwareVirtualDisk from intersight.model.virtualization_vmware_virtual_machine import VirtualizationVmwareVirtualMachine + from intersight.model.virtualization_vmware_virtual_machine_snapshot import VirtualizationVmwareVirtualMachineSnapshot from intersight.model.virtualization_vmware_virtual_network_interface import VirtualizationVmwareVirtualNetworkInterface from intersight.model.virtualization_vmware_virtual_switch import VirtualizationVmwareVirtualSwitch globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship @@ -136,6 +138,7 @@ def lazy_import(): globals()['VirtualizationBaseSwitch'] = VirtualizationBaseSwitch globals()['VirtualizationBaseVirtualDisk'] = VirtualizationBaseVirtualDisk globals()['VirtualizationBaseVirtualMachine'] = VirtualizationBaseVirtualMachine + globals()['VirtualizationBaseVirtualMachineSnapshot'] = VirtualizationBaseVirtualMachineSnapshot globals()['VirtualizationBaseVirtualNetwork'] = VirtualizationBaseVirtualNetwork globals()['VirtualizationBaseVirtualNetworkInterface'] = VirtualizationBaseVirtualNetworkInterface globals()['VirtualizationBaseVirtualNetworkInterfaceCard'] = VirtualizationBaseVirtualNetworkInterfaceCard @@ -154,6 +157,7 @@ def lazy_import(): globals()['VirtualizationVmwareUplinkPort'] = VirtualizationVmwareUplinkPort globals()['VirtualizationVmwareVirtualDisk'] = VirtualizationVmwareVirtualDisk globals()['VirtualizationVmwareVirtualMachine'] = VirtualizationVmwareVirtualMachine + globals()['VirtualizationVmwareVirtualMachineSnapshot'] = VirtualizationVmwareVirtualMachineSnapshot globals()['VirtualizationVmwareVirtualNetworkInterface'] = VirtualizationVmwareVirtualNetworkInterface globals()['VirtualizationVmwareVirtualSwitch'] = VirtualizationVmwareVirtualSwitch @@ -213,6 +217,7 @@ class VirtualizationBaseSourceDevice(ModelComposed): 'VIRTUALIZATION.VMWAREUPLINKPORT': "virtualization.VmwareUplinkPort", 'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk", 'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine", + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", 'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface", 'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch", }, @@ -246,6 +251,7 @@ class VirtualizationBaseSourceDevice(ModelComposed): 'VIRTUALIZATION.VMWAREUPLINKPORT': "virtualization.VmwareUplinkPort", 'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk", 'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine", + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", 'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface", 'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch", }, @@ -336,6 +342,7 @@ def discriminator(): 'virtualization.BaseSwitch': VirtualizationBaseSwitch, 'virtualization.BaseVirtualDisk': VirtualizationBaseVirtualDisk, 'virtualization.BaseVirtualMachine': VirtualizationBaseVirtualMachine, + 'virtualization.BaseVirtualMachineSnapshot': VirtualizationBaseVirtualMachineSnapshot, 'virtualization.BaseVirtualNetwork': VirtualizationBaseVirtualNetwork, 'virtualization.BaseVirtualNetworkInterface': VirtualizationBaseVirtualNetworkInterface, 'virtualization.BaseVirtualNetworkInterfaceCard': VirtualizationBaseVirtualNetworkInterfaceCard, @@ -354,6 +361,7 @@ def discriminator(): 'virtualization.VmwareUplinkPort': VirtualizationVmwareUplinkPort, 'virtualization.VmwareVirtualDisk': VirtualizationVmwareVirtualDisk, 'virtualization.VmwareVirtualMachine': VirtualizationVmwareVirtualMachine, + 'virtualization.VmwareVirtualMachineSnapshot': VirtualizationVmwareVirtualMachineSnapshot, 'virtualization.VmwareVirtualNetworkInterface': VirtualizationVmwareVirtualNetworkInterface, 'virtualization.VmwareVirtualSwitch': VirtualizationVmwareVirtualSwitch, } diff --git a/intersight/model/virtualization_base_source_device_all_of.py b/intersight/model/virtualization_base_source_device_all_of.py index 3163c923f5..3b98d4dc29 100644 --- a/intersight/model/virtualization_base_source_device_all_of.py +++ b/intersight/model/virtualization_base_source_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 """ @@ -87,6 +87,7 @@ class VirtualizationBaseSourceDeviceAllOf(ModelNormal): 'VIRTUALIZATION.VMWAREUPLINKPORT': "virtualization.VmwareUplinkPort", 'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk", 'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine", + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", 'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface", 'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch", }, @@ -120,6 +121,7 @@ class VirtualizationBaseSourceDeviceAllOf(ModelNormal): 'VIRTUALIZATION.VMWAREUPLINKPORT': "virtualization.VmwareUplinkPort", 'VIRTUALIZATION.VMWAREVIRTUALDISK': "virtualization.VmwareVirtualDisk", 'VIRTUALIZATION.VMWAREVIRTUALMACHINE': "virtualization.VmwareVirtualMachine", + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", 'VIRTUALIZATION.VMWAREVIRTUALNETWORKINTERFACE': "virtualization.VmwareVirtualNetworkInterface", 'VIRTUALIZATION.VMWAREVIRTUALSWITCH': "virtualization.VmwareVirtualSwitch", }, diff --git a/intersight/model/virtualization_base_switch.py b/intersight/model/virtualization_base_switch.py index 4619228e65..f1b4e34753 100644 --- a/intersight/model/virtualization_base_switch.py +++ b/intersight/model/virtualization_base_switch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_switch_all_of.py b/intersight/model/virtualization_base_switch_all_of.py index e72bbf84e6..ec60f99603 100644 --- a/intersight/model/virtualization_base_switch_all_of.py +++ b/intersight/model/virtualization_base_switch_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_virtual_disk.py b/intersight/model/virtualization_base_virtual_disk.py index 43d50516d9..b6101d9be5 100644 --- a/intersight/model/virtualization_base_virtual_disk.py +++ b/intersight/model/virtualization_base_virtual_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/virtualization_base_virtual_disk_all_of.py b/intersight/model/virtualization_base_virtual_disk_all_of.py index d527f48d77..df2977afa8 100644 --- a/intersight/model/virtualization_base_virtual_disk_all_of.py +++ b/intersight/model/virtualization_base_virtual_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/virtualization_base_virtual_disk_relationship.py b/intersight/model/virtualization_base_virtual_disk_relationship.py index 8ecc66e1fe..81fda6114f 100644 --- a/intersight/model/virtualization_base_virtual_disk_relationship.py +++ b/intersight/model/virtualization_base_virtual_disk_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 VirtualizationBaseVirtualDiskRelationship(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 VirtualizationBaseVirtualDiskRelationship(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 VirtualizationBaseVirtualDiskRelationship(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 VirtualizationBaseVirtualDiskRelationship(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 VirtualizationBaseVirtualDiskRelationship(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 VirtualizationBaseVirtualDiskRelationship(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 VirtualizationBaseVirtualDiskRelationship(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 VirtualizationBaseVirtualDiskRelationship(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 VirtualizationBaseVirtualDiskRelationship(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 VirtualizationBaseVirtualDiskRelationship(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/virtualization_base_virtual_machine.py b/intersight/model/virtualization_base_virtual_machine.py index ad14037df8..9f4b402a91 100644 --- a/intersight/model/virtualization_base_virtual_machine.py +++ b/intersight/model/virtualization_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 """ @@ -173,11 +173,13 @@ def openapi_types(): 'object_type': (str,), # 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 @@ -219,11 +221,13 @@ def discriminator(): 'object_type': 'ObjectType', # 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 @@ -300,11 +304,13 @@ def __init__(self, class_id, object_type, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) 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/virtualization_base_virtual_machine_all_of.py b/intersight/model/virtualization_base_virtual_machine_all_of.py index 95fd9cff97..c95695b07a 100644 --- a/intersight/model/virtualization_base_virtual_machine_all_of.py +++ b/intersight/model/virtualization_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 """ @@ -144,11 +144,13 @@ def openapi_types(): 'object_type': (str,), # 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 @@ -168,11 +170,13 @@ def discriminator(): 'object_type': 'ObjectType', # 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 @@ -234,11 +238,13 @@ def __init__(self, class_id, object_type, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) 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/virtualization_base_virtual_machine_relationship.py b/intersight/model/virtualization_base_virtual_machine_relationship.py index 5619cb049e..ba63e75639 100644 --- a/intersight/model/virtualization_base_virtual_machine_relationship.py +++ b/intersight/model/virtualization_base_virtual_machine_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 VirtualizationBaseVirtualMachineRelationship(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 VirtualizationBaseVirtualMachineRelationship(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 VirtualizationBaseVirtualMachineRelationship(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 VirtualizationBaseVirtualMachineRelationship(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 VirtualizationBaseVirtualMachineRelationship(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 VirtualizationBaseVirtualMachineRelationship(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 VirtualizationBaseVirtualMachineRelationship(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 VirtualizationBaseVirtualMachineRelationship(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 VirtualizationBaseVirtualMachineRelationship(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 VirtualizationBaseVirtualMachineRelationship(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", }, } @@ -919,11 +932,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 @@ -965,11 +980,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 @@ -1048,11 +1065,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/virtualization_base_virtual_machine_snapshot.py b/intersight/model/virtualization_base_virtual_machine_snapshot.py new file mode 100644 index 0000000000..eb284a5ad8 --- /dev/null +++ b/intersight/model/virtualization_base_virtual_machine_snapshot.py @@ -0,0 +1,304 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.mo_base_mo_relationship import MoBaseMoRelationship + from intersight.model.mo_tag import MoTag + from intersight.model.mo_version_context import MoVersionContext + from intersight.model.virtualization_base_source_device import VirtualizationBaseSourceDevice + from intersight.model.virtualization_base_virtual_machine_snapshot_all_of import VirtualizationBaseVirtualMachineSnapshotAllOf + from intersight.model.virtualization_vmware_virtual_machine_snapshot import VirtualizationVmwareVirtualMachineSnapshot + globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['VirtualizationBaseSourceDevice'] = VirtualizationBaseSourceDevice + globals()['VirtualizationBaseVirtualMachineSnapshotAllOf'] = VirtualizationBaseVirtualMachineSnapshotAllOf + globals()['VirtualizationVmwareVirtualMachineSnapshot'] = VirtualizationVmwareVirtualMachineSnapshot + + +class VirtualizationBaseVirtualMachineSnapshot(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',): { + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", + }, + ('object_type',): { + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", + }, + } + + 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 + 'identity': (str,), # noqa: E501 + 'name': (str,), # 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 + 'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501 + } + + @cached_property + def discriminator(): + lazy_import() + val = { + 'virtualization.VmwareVirtualMachineSnapshot': VirtualizationVmwareVirtualMachineSnapshot, + } + if not val: + return None + return {'class_id': val} + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'identity': 'Identity', # noqa: E501 + 'name': 'Name', # 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 + 'registered_device': 'RegisteredDevice', # 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 + """VirtualizationBaseVirtualMachineSnapshot - 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 "virtualization.VmwareVirtualMachineSnapshot", must be one of ["virtualization.VmwareVirtualMachineSnapshot", ] # 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 "virtualization.VmwareVirtualMachineSnapshot", must be one of ["virtualization.VmwareVirtualMachineSnapshot", ] # 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,) + identity (str): The internally generated identity of the snapshot. This entity is not manipulated by users. It aids in uniquely identifying the snapshot object. For VMware, this is a MOR (managed object reference).. [optional] # noqa: E501 + name (str): User name provided to identify the snapshot.. [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 + registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "virtualization.VmwareVirtualMachineSnapshot") + object_type = kwargs.get('object_type', "virtualization.VmwareVirtualMachineSnapshot") + _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': [ + VirtualizationBaseSourceDevice, + VirtualizationBaseVirtualMachineSnapshotAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/virtualization_base_virtual_machine_snapshot_all_of.py b/intersight/model/virtualization_base_virtual_machine_snapshot_all_of.py new file mode 100644 index 0000000000..0d49aeebfc --- /dev/null +++ b/intersight/model/virtualization_base_virtual_machine_snapshot_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 VirtualizationBaseVirtualMachineSnapshotAllOf(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',): { + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", + }, + ('object_type',): { + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", + }, + } + + 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 + 'identity': (str,), # noqa: E501 + 'name': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'identity': 'Identity', # noqa: E501 + 'name': 'Name', # 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 + """VirtualizationBaseVirtualMachineSnapshotAllOf - 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 "virtualization.VmwareVirtualMachineSnapshot", must be one of ["virtualization.VmwareVirtualMachineSnapshot", ] # 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 "virtualization.VmwareVirtualMachineSnapshot", must be one of ["virtualization.VmwareVirtualMachineSnapshot", ] # 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,) + identity (str): The internally generated identity of the snapshot. This entity is not manipulated by users. It aids in uniquely identifying the snapshot object. For VMware, this is a MOR (managed object reference).. [optional] # noqa: E501 + name (str): User name provided to identify the snapshot.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "virtualization.VmwareVirtualMachineSnapshot") + object_type = kwargs.get('object_type', "virtualization.VmwareVirtualMachineSnapshot") + _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/virtualization_base_virtual_network.py b/intersight/model/virtualization_base_virtual_network.py index 685c38d63b..23cd961ad4 100644 --- a/intersight/model/virtualization_base_virtual_network.py +++ b/intersight/model/virtualization_base_virtual_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/virtualization_base_virtual_network_interface.py b/intersight/model/virtualization_base_virtual_network_interface.py index d74d6f9d79..8c89d86959 100644 --- a/intersight/model/virtualization_base_virtual_network_interface.py +++ b/intersight/model/virtualization_base_virtual_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/virtualization_base_virtual_network_interface_all_of.py b/intersight/model/virtualization_base_virtual_network_interface_all_of.py index cc768cad22..a87fb27cfa 100644 --- a/intersight/model/virtualization_base_virtual_network_interface_all_of.py +++ b/intersight/model/virtualization_base_virtual_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/virtualization_base_virtual_network_interface_card.py b/intersight/model/virtualization_base_virtual_network_interface_card.py index c1ab3fd210..0ace07b85f 100644 --- a/intersight/model/virtualization_base_virtual_network_interface_card.py +++ b/intersight/model/virtualization_base_virtual_network_interface_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/virtualization_base_virtual_network_interface_card_all_of.py b/intersight/model/virtualization_base_virtual_network_interface_card_all_of.py index 0435f5b673..3605b9f04f 100644 --- a/intersight/model/virtualization_base_virtual_network_interface_card_all_of.py +++ b/intersight/model/virtualization_base_virtual_network_interface_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/virtualization_base_virtual_switch.py b/intersight/model/virtualization_base_virtual_switch.py index cc895222ea..ff94309fc2 100644 --- a/intersight/model/virtualization_base_virtual_switch.py +++ b/intersight/model/virtualization_base_virtual_switch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_base_vm_configuration.py b/intersight/model/virtualization_base_vm_configuration.py index 979a114205..468916d2be 100644 --- a/intersight/model/virtualization_base_vm_configuration.py +++ b/intersight/model/virtualization_base_vm_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 """ @@ -126,6 +126,7 @@ class VirtualizationBaseVmConfiguration(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", @@ -166,7 +167,6 @@ class VirtualizationBaseVmConfiguration(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", @@ -302,6 +302,7 @@ class VirtualizationBaseVmConfiguration(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", @@ -310,6 +311,8 @@ class VirtualizationBaseVmConfiguration(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", @@ -321,6 +324,7 @@ class VirtualizationBaseVmConfiguration(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", @@ -332,6 +336,7 @@ class VirtualizationBaseVmConfiguration(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", @@ -389,6 +394,8 @@ class VirtualizationBaseVmConfiguration(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", @@ -398,6 +405,7 @@ class VirtualizationBaseVmConfiguration(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", @@ -633,6 +641,7 @@ class VirtualizationBaseVmConfiguration(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", @@ -673,7 +682,6 @@ class VirtualizationBaseVmConfiguration(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", @@ -809,6 +817,7 @@ class VirtualizationBaseVmConfiguration(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", @@ -817,6 +826,8 @@ class VirtualizationBaseVmConfiguration(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", @@ -828,6 +839,7 @@ class VirtualizationBaseVmConfiguration(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", @@ -839,6 +851,7 @@ class VirtualizationBaseVmConfiguration(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", @@ -896,6 +909,8 @@ class VirtualizationBaseVmConfiguration(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", @@ -905,6 +920,7 @@ class VirtualizationBaseVmConfiguration(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/virtualization_base_vswitch.py b/intersight/model/virtualization_base_vswitch.py index b8038a6ad6..189ea1f2fd 100644 --- a/intersight/model/virtualization_base_vswitch.py +++ b/intersight/model/virtualization_base_vswitch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_cloud_init_config.py b/intersight/model/virtualization_cloud_init_config.py index 4d4547dc57..69b9a64f86 100644 --- a/intersight/model/virtualization_cloud_init_config.py +++ b/intersight/model/virtualization_cloud_init_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/virtualization_cloud_init_config_all_of.py b/intersight/model/virtualization_cloud_init_config_all_of.py index 6dd1f15f5e..1a2f675595 100644 --- a/intersight/model/virtualization_cloud_init_config_all_of.py +++ b/intersight/model/virtualization_cloud_init_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/virtualization_compute_capacity.py b/intersight/model/virtualization_compute_capacity.py index 45ae5b1e63..0f9a7027ea 100644 --- a/intersight/model/virtualization_compute_capacity.py +++ b/intersight/model/virtualization_compute_capacity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_compute_capacity_all_of.py b/intersight/model/virtualization_compute_capacity_all_of.py index efdb36f3c1..d98669807d 100644 --- a/intersight/model/virtualization_compute_capacity_all_of.py +++ b/intersight/model/virtualization_compute_capacity_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_cpu_allocation.py b/intersight/model/virtualization_cpu_allocation.py index 13eec9d55d..656601daec 100644 --- a/intersight/model/virtualization_cpu_allocation.py +++ b/intersight/model/virtualization_cpu_allocation.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_cpu_allocation_all_of.py b/intersight/model/virtualization_cpu_allocation_all_of.py index 938ebb8faf..f6d79d40b5 100644 --- a/intersight/model/virtualization_cpu_allocation_all_of.py +++ b/intersight/model/virtualization_cpu_allocation_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_cpu_info.py b/intersight/model/virtualization_cpu_info.py index 0edbdb53db..e8fb03395a 100644 --- a/intersight/model/virtualization_cpu_info.py +++ b/intersight/model/virtualization_cpu_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/virtualization_cpu_info_all_of.py b/intersight/model/virtualization_cpu_info_all_of.py index d495220af4..717901a406 100644 --- a/intersight/model/virtualization_cpu_info_all_of.py +++ b/intersight/model/virtualization_cpu_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/virtualization_esxi_clone_custom_spec.py b/intersight/model/virtualization_esxi_clone_custom_spec.py index b42edbdd11..7841457ec7 100644 --- a/intersight/model/virtualization_esxi_clone_custom_spec.py +++ b/intersight/model/virtualization_esxi_clone_custom_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_esxi_clone_custom_spec_all_of.py b/intersight/model/virtualization_esxi_clone_custom_spec_all_of.py index a39c69b938..7cd973fae6 100644 --- a/intersight/model/virtualization_esxi_clone_custom_spec_all_of.py +++ b/intersight/model/virtualization_esxi_clone_custom_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_esxi_ova_custom_spec.py b/intersight/model/virtualization_esxi_ova_custom_spec.py index e6e1125a98..c87d546001 100644 --- a/intersight/model/virtualization_esxi_ova_custom_spec.py +++ b/intersight/model/virtualization_esxi_ova_custom_spec.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_esxi_ova_custom_spec_all_of.py b/intersight/model/virtualization_esxi_ova_custom_spec_all_of.py index 1c8985f782..9fb49a0b68 100644 --- a/intersight/model/virtualization_esxi_ova_custom_spec_all_of.py +++ b/intersight/model/virtualization_esxi_ova_custom_spec_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_esxi_vm_compute_configuration.py b/intersight/model/virtualization_esxi_vm_compute_configuration.py index 22b25a745d..ee877e7547 100644 --- a/intersight/model/virtualization_esxi_vm_compute_configuration.py +++ b/intersight/model/virtualization_esxi_vm_compute_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/virtualization_esxi_vm_compute_configuration_all_of.py b/intersight/model/virtualization_esxi_vm_compute_configuration_all_of.py index 9246a4e0d3..eaf5782a7a 100644 --- a/intersight/model/virtualization_esxi_vm_compute_configuration_all_of.py +++ b/intersight/model/virtualization_esxi_vm_compute_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/virtualization_esxi_vm_configuration.py b/intersight/model/virtualization_esxi_vm_configuration.py index ec882bbdc4..ed65d39270 100644 --- a/intersight/model/virtualization_esxi_vm_configuration.py +++ b/intersight/model/virtualization_esxi_vm_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/virtualization_esxi_vm_configuration_all_of.py b/intersight/model/virtualization_esxi_vm_configuration_all_of.py index 4751dabe6d..e2aea84b8a 100644 --- a/intersight/model/virtualization_esxi_vm_configuration_all_of.py +++ b/intersight/model/virtualization_esxi_vm_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/virtualization_esxi_vm_network_configuration.py b/intersight/model/virtualization_esxi_vm_network_configuration.py index 16531a1bec..2bd0f368e0 100644 --- a/intersight/model/virtualization_esxi_vm_network_configuration.py +++ b/intersight/model/virtualization_esxi_vm_network_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/virtualization_esxi_vm_network_configuration_all_of.py b/intersight/model/virtualization_esxi_vm_network_configuration_all_of.py index de8f237e23..167f840f06 100644 --- a/intersight/model/virtualization_esxi_vm_network_configuration_all_of.py +++ b/intersight/model/virtualization_esxi_vm_network_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/virtualization_esxi_vm_storage_configuration.py b/intersight/model/virtualization_esxi_vm_storage_configuration.py index 82a79e59e8..ea3efc121c 100644 --- a/intersight/model/virtualization_esxi_vm_storage_configuration.py +++ b/intersight/model/virtualization_esxi_vm_storage_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/virtualization_esxi_vm_storage_configuration_all_of.py b/intersight/model/virtualization_esxi_vm_storage_configuration_all_of.py index 1f22afdf0d..38e8a11566 100644 --- a/intersight/model/virtualization_esxi_vm_storage_configuration_all_of.py +++ b/intersight/model/virtualization_esxi_vm_storage_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/virtualization_guest_info.py b/intersight/model/virtualization_guest_info.py index 639dbf1c02..d9126b9d9e 100644 --- a/intersight/model/virtualization_guest_info.py +++ b/intersight/model/virtualization_guest_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/virtualization_guest_info_all_of.py b/intersight/model/virtualization_guest_info_all_of.py index e5c6a03956..bdb8c6aae2 100644 --- a/intersight/model/virtualization_guest_info_all_of.py +++ b/intersight/model/virtualization_guest_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/virtualization_host.py b/intersight/model/virtualization_host.py index 6366fa0e96..d89d316b8d 100644 --- a/intersight/model/virtualization_host.py +++ b/intersight/model/virtualization_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/virtualization_host_all_of.py b/intersight/model/virtualization_host_all_of.py index b3200af0f5..90fa8d9b9f 100644 --- a/intersight/model/virtualization_host_all_of.py +++ b/intersight/model/virtualization_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/virtualization_host_list.py b/intersight/model/virtualization_host_list.py index 4703e5ad82..b2bdf9d0b7 100644 --- a/intersight/model/virtualization_host_list.py +++ b/intersight/model/virtualization_host_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/virtualization_host_list_all_of.py b/intersight/model/virtualization_host_list_all_of.py index aad62ef5e5..349aaf5ed0 100644 --- a/intersight/model/virtualization_host_list_all_of.py +++ b/intersight/model/virtualization_host_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/virtualization_host_response.py b/intersight/model/virtualization_host_response.py index 1455ca9de4..1097519cc5 100644 --- a/intersight/model/virtualization_host_response.py +++ b/intersight/model/virtualization_host_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/virtualization_hxap_vm_configuration.py b/intersight/model/virtualization_hxap_vm_configuration.py index e4314eb921..58436de455 100644 --- a/intersight/model/virtualization_hxap_vm_configuration.py +++ b/intersight/model/virtualization_hxap_vm_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 """ @@ -122,6 +122,7 @@ class VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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 VirtualizationHxapVmConfiguration(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/virtualization_memory_allocation.py b/intersight/model/virtualization_memory_allocation.py index 9c7f9532af..dee96a3aeb 100644 --- a/intersight/model/virtualization_memory_allocation.py +++ b/intersight/model/virtualization_memory_allocation.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_memory_allocation_all_of.py b/intersight/model/virtualization_memory_allocation_all_of.py index ea0923bd4b..15f1d59132 100644 --- a/intersight/model/virtualization_memory_allocation_all_of.py +++ b/intersight/model/virtualization_memory_allocation_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_memory_capacity.py b/intersight/model/virtualization_memory_capacity.py index 154c881532..1489b5ba75 100644 --- a/intersight/model/virtualization_memory_capacity.py +++ b/intersight/model/virtualization_memory_capacity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_memory_capacity_all_of.py b/intersight/model/virtualization_memory_capacity_all_of.py index e9722e3e59..430b89fc62 100644 --- a/intersight/model/virtualization_memory_capacity_all_of.py +++ b/intersight/model/virtualization_memory_capacity_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_network_interface.py b/intersight/model/virtualization_network_interface.py index a3ed6f6117..e6a6bc0d1c 100644 --- a/intersight/model/virtualization_network_interface.py +++ b/intersight/model/virtualization_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/virtualization_network_interface_all_of.py b/intersight/model/virtualization_network_interface_all_of.py index c00ca803c7..3ae7787b89 100644 --- a/intersight/model/virtualization_network_interface_all_of.py +++ b/intersight/model/virtualization_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/virtualization_product_info.py b/intersight/model/virtualization_product_info.py index 68527edcef..516a94c887 100644 --- a/intersight/model/virtualization_product_info.py +++ b/intersight/model/virtualization_product_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/virtualization_product_info_all_of.py b/intersight/model/virtualization_product_info_all_of.py index faeba59ffc..2cf5299a74 100644 --- a/intersight/model/virtualization_product_info_all_of.py +++ b/intersight/model/virtualization_product_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/virtualization_storage_capacity.py b/intersight/model/virtualization_storage_capacity.py index 611267b225..b05acd675b 100644 --- a/intersight/model/virtualization_storage_capacity.py +++ b/intersight/model/virtualization_storage_capacity.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_storage_capacity_all_of.py b/intersight/model/virtualization_storage_capacity_all_of.py index a08b08d5c3..ada5277559 100644 --- a/intersight/model/virtualization_storage_capacity_all_of.py +++ b/intersight/model/virtualization_storage_capacity_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_virtual_disk.py b/intersight/model/virtualization_virtual_disk.py index af8385d08c..eda0aa4af6 100644 --- a/intersight/model/virtualization_virtual_disk.py +++ b/intersight/model/virtualization_virtual_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/virtualization_virtual_disk_all_of.py b/intersight/model/virtualization_virtual_disk_all_of.py index f921a0c30f..ade2f0fb05 100644 --- a/intersight/model/virtualization_virtual_disk_all_of.py +++ b/intersight/model/virtualization_virtual_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/virtualization_virtual_disk_config.py b/intersight/model/virtualization_virtual_disk_config.py index 497c5a7142..5673534a17 100644 --- a/intersight/model/virtualization_virtual_disk_config.py +++ b/intersight/model/virtualization_virtual_disk_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/virtualization_virtual_disk_config_all_of.py b/intersight/model/virtualization_virtual_disk_config_all_of.py index c9bf0dfa54..8fbef0a433 100644 --- a/intersight/model/virtualization_virtual_disk_config_all_of.py +++ b/intersight/model/virtualization_virtual_disk_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/virtualization_virtual_disk_list.py b/intersight/model/virtualization_virtual_disk_list.py index e5521f0ffd..5f37d1a944 100644 --- a/intersight/model/virtualization_virtual_disk_list.py +++ b/intersight/model/virtualization_virtual_disk_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/virtualization_virtual_disk_list_all_of.py b/intersight/model/virtualization_virtual_disk_list_all_of.py index 4046d5d016..aef87558a8 100644 --- a/intersight/model/virtualization_virtual_disk_list_all_of.py +++ b/intersight/model/virtualization_virtual_disk_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/virtualization_virtual_disk_response.py b/intersight/model/virtualization_virtual_disk_response.py index 763e2829e2..5c426196a9 100644 --- a/intersight/model/virtualization_virtual_disk_response.py +++ b/intersight/model/virtualization_virtual_disk_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/virtualization_virtual_machine.py b/intersight/model/virtualization_virtual_machine.py index d5e5b467e0..0916a2b2a9 100644 --- a/intersight/model/virtualization_virtual_machine.py +++ b/intersight/model/virtualization_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 """ diff --git a/intersight/model/virtualization_virtual_machine_all_of.py b/intersight/model/virtualization_virtual_machine_all_of.py index 3be4852c4c..81574a4969 100644 --- a/intersight/model/virtualization_virtual_machine_all_of.py +++ b/intersight/model/virtualization_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/virtualization_virtual_machine_disk.py b/intersight/model/virtualization_virtual_machine_disk.py index 4a84c78594..45f93f9063 100644 --- a/intersight/model/virtualization_virtual_machine_disk.py +++ b/intersight/model/virtualization_virtual_machine_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/virtualization_virtual_machine_disk_all_of.py b/intersight/model/virtualization_virtual_machine_disk_all_of.py index 31b8627e1e..4ecf2af63b 100644 --- a/intersight/model/virtualization_virtual_machine_disk_all_of.py +++ b/intersight/model/virtualization_virtual_machine_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/virtualization_virtual_machine_list.py b/intersight/model/virtualization_virtual_machine_list.py index eb4b5d63d0..b6055def14 100644 --- a/intersight/model/virtualization_virtual_machine_list.py +++ b/intersight/model/virtualization_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/virtualization_virtual_machine_list_all_of.py b/intersight/model/virtualization_virtual_machine_list_all_of.py index 9bc2b87d4a..05ba30d701 100644 --- a/intersight/model/virtualization_virtual_machine_list_all_of.py +++ b/intersight/model/virtualization_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/virtualization_virtual_machine_relationship.py b/intersight/model/virtualization_virtual_machine_relationship.py index d993ccda0d..7546caf847 100644 --- a/intersight/model/virtualization_virtual_machine_relationship.py +++ b/intersight/model/virtualization_virtual_machine_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 """ @@ -126,6 +126,8 @@ class VirtualizationVirtualMachineRelationship(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", @@ -142,6 +144,7 @@ class VirtualizationVirtualMachineRelationship(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", @@ -190,9 +193,12 @@ class VirtualizationVirtualMachineRelationship(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", @@ -256,10 +262,6 @@ class VirtualizationVirtualMachineRelationship(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", @@ -268,6 +270,7 @@ class VirtualizationVirtualMachineRelationship(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", @@ -516,6 +519,7 @@ class VirtualizationVirtualMachineRelationship(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", @@ -685,6 +689,11 @@ class VirtualizationVirtualMachineRelationship(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", @@ -800,6 +809,7 @@ class VirtualizationVirtualMachineRelationship(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", @@ -831,6 +841,7 @@ class VirtualizationVirtualMachineRelationship(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", @@ -863,12 +874,14 @@ class VirtualizationVirtualMachineRelationship(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/virtualization_virtual_machine_response.py b/intersight/model/virtualization_virtual_machine_response.py index 05c4d1e148..cb7e05ce54 100644 --- a/intersight/model/virtualization_virtual_machine_response.py +++ b/intersight/model/virtualization_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/virtualization_vm_esxi_disk.py b/intersight/model/virtualization_vm_esxi_disk.py index 98730b055a..e4bb393abc 100644 --- a/intersight/model/virtualization_vm_esxi_disk.py +++ b/intersight/model/virtualization_vm_esxi_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/virtualization_vm_esxi_disk_all_of.py b/intersight/model/virtualization_vm_esxi_disk_all_of.py index 07268f8ad4..94b6bfff21 100644 --- a/intersight/model/virtualization_vm_esxi_disk_all_of.py +++ b/intersight/model/virtualization_vm_esxi_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/virtualization_vmware_cluster.py b/intersight/model/virtualization_vmware_cluster.py index 22a60e49f9..fd5a186c04 100644 --- a/intersight/model/virtualization_vmware_cluster.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_cluster_all_of.py b/intersight/model/virtualization_vmware_cluster_all_of.py index dddfe78b7a..c59d1d265e 100644 --- a/intersight/model/virtualization_vmware_cluster_all_of.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_cluster_list.py b/intersight/model/virtualization_vmware_cluster_list.py index 3ea91f12ad..77f4f09d2d 100644 --- a/intersight/model/virtualization_vmware_cluster_list.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_cluster_list_all_of.py b/intersight/model/virtualization_vmware_cluster_list_all_of.py index 199f2cea1b..469391545c 100644 --- a/intersight/model/virtualization_vmware_cluster_list_all_of.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_cluster_relationship.py b/intersight/model/virtualization_vmware_cluster_relationship.py index 5c1aeb59b6..9527e7111c 100644 --- a/intersight/model/virtualization_vmware_cluster_relationship.py +++ b/intersight/model/virtualization_vmware_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 """ @@ -92,6 +92,8 @@ class VirtualizationVmwareClusterRelationship(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 VirtualizationVmwareClusterRelationship(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 VirtualizationVmwareClusterRelationship(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 VirtualizationVmwareClusterRelationship(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 VirtualizationVmwareClusterRelationship(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 VirtualizationVmwareClusterRelationship(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 VirtualizationVmwareClusterRelationship(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 VirtualizationVmwareClusterRelationship(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 VirtualizationVmwareClusterRelationship(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 VirtualizationVmwareClusterRelationship(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/virtualization_vmware_cluster_response.py b/intersight/model/virtualization_vmware_cluster_response.py index 2c7fe6c1e5..1e0b09ee78 100644 --- a/intersight/model/virtualization_vmware_cluster_response.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_datacenter.py b/intersight/model/virtualization_vmware_datacenter.py index b2bd6f291a..45a512bf7f 100644 --- a/intersight/model/virtualization_vmware_datacenter.py +++ b/intersight/model/virtualization_vmware_datacenter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_datacenter_all_of.py b/intersight/model/virtualization_vmware_datacenter_all_of.py index 5adcc2fe18..ee55ef0884 100644 --- a/intersight/model/virtualization_vmware_datacenter_all_of.py +++ b/intersight/model/virtualization_vmware_datacenter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_datacenter_list.py b/intersight/model/virtualization_vmware_datacenter_list.py index af5f2ae63d..406849f831 100644 --- a/intersight/model/virtualization_vmware_datacenter_list.py +++ b/intersight/model/virtualization_vmware_datacenter_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/virtualization_vmware_datacenter_list_all_of.py b/intersight/model/virtualization_vmware_datacenter_list_all_of.py index 4d43d21b27..5dbf7153b9 100644 --- a/intersight/model/virtualization_vmware_datacenter_list_all_of.py +++ b/intersight/model/virtualization_vmware_datacenter_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/virtualization_vmware_datacenter_relationship.py b/intersight/model/virtualization_vmware_datacenter_relationship.py index 3885dfbc2e..e9791fbb78 100644 --- a/intersight/model/virtualization_vmware_datacenter_relationship.py +++ b/intersight/model/virtualization_vmware_datacenter_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 VirtualizationVmwareDatacenterRelationship(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 VirtualizationVmwareDatacenterRelationship(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 VirtualizationVmwareDatacenterRelationship(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 VirtualizationVmwareDatacenterRelationship(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 VirtualizationVmwareDatacenterRelationship(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 VirtualizationVmwareDatacenterRelationship(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 VirtualizationVmwareDatacenterRelationship(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 VirtualizationVmwareDatacenterRelationship(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 VirtualizationVmwareDatacenterRelationship(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 VirtualizationVmwareDatacenterRelationship(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/virtualization_vmware_datacenter_response.py b/intersight/model/virtualization_vmware_datacenter_response.py index 5d2826e955..438cac1353 100644 --- a/intersight/model/virtualization_vmware_datacenter_response.py +++ b/intersight/model/virtualization_vmware_datacenter_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/virtualization_vmware_datastore.py b/intersight/model/virtualization_vmware_datastore.py index 769b3a1f2e..ce7011cb28 100644 --- a/intersight/model/virtualization_vmware_datastore.py +++ b/intersight/model/virtualization_vmware_datastore.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_datastore_all_of.py b/intersight/model/virtualization_vmware_datastore_all_of.py index 58a5bc60a2..4e4d6618d4 100644 --- a/intersight/model/virtualization_vmware_datastore_all_of.py +++ b/intersight/model/virtualization_vmware_datastore_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_datastore_cluster.py b/intersight/model/virtualization_vmware_datastore_cluster.py index 776ca84ed1..779307b165 100644 --- a/intersight/model/virtualization_vmware_datastore_cluster.py +++ b/intersight/model/virtualization_vmware_datastore_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/virtualization_vmware_datastore_cluster_all_of.py b/intersight/model/virtualization_vmware_datastore_cluster_all_of.py index 0a43d274ec..dd4da38402 100644 --- a/intersight/model/virtualization_vmware_datastore_cluster_all_of.py +++ b/intersight/model/virtualization_vmware_datastore_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/virtualization_vmware_datastore_cluster_list.py b/intersight/model/virtualization_vmware_datastore_cluster_list.py index dd5a4bd286..c2de275833 100644 --- a/intersight/model/virtualization_vmware_datastore_cluster_list.py +++ b/intersight/model/virtualization_vmware_datastore_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/virtualization_vmware_datastore_cluster_list_all_of.py b/intersight/model/virtualization_vmware_datastore_cluster_list_all_of.py index 60ced20775..656fcf8f54 100644 --- a/intersight/model/virtualization_vmware_datastore_cluster_list_all_of.py +++ b/intersight/model/virtualization_vmware_datastore_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/virtualization_vmware_datastore_cluster_relationship.py b/intersight/model/virtualization_vmware_datastore_cluster_relationship.py index ddc6691bcb..67dd6b45cc 100644 --- a/intersight/model/virtualization_vmware_datastore_cluster_relationship.py +++ b/intersight/model/virtualization_vmware_datastore_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 """ @@ -91,6 +91,8 @@ class VirtualizationVmwareDatastoreClusterRelationship(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 VirtualizationVmwareDatastoreClusterRelationship(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 VirtualizationVmwareDatastoreClusterRelationship(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 VirtualizationVmwareDatastoreClusterRelationship(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 VirtualizationVmwareDatastoreClusterRelationship(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 VirtualizationVmwareDatastoreClusterRelationship(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 VirtualizationVmwareDatastoreClusterRelationship(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 VirtualizationVmwareDatastoreClusterRelationship(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 VirtualizationVmwareDatastoreClusterRelationship(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 VirtualizationVmwareDatastoreClusterRelationship(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/virtualization_vmware_datastore_cluster_response.py b/intersight/model/virtualization_vmware_datastore_cluster_response.py index e7fe9f5fb8..6ef5e1055d 100644 --- a/intersight/model/virtualization_vmware_datastore_cluster_response.py +++ b/intersight/model/virtualization_vmware_datastore_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/virtualization_vmware_datastore_list.py b/intersight/model/virtualization_vmware_datastore_list.py index bd9255dbe3..255f385768 100644 --- a/intersight/model/virtualization_vmware_datastore_list.py +++ b/intersight/model/virtualization_vmware_datastore_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/virtualization_vmware_datastore_list_all_of.py b/intersight/model/virtualization_vmware_datastore_list_all_of.py index 0606c152fb..4b64454563 100644 --- a/intersight/model/virtualization_vmware_datastore_list_all_of.py +++ b/intersight/model/virtualization_vmware_datastore_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/virtualization_vmware_datastore_relationship.py b/intersight/model/virtualization_vmware_datastore_relationship.py index 955956725b..41b510d1a8 100644 --- a/intersight/model/virtualization_vmware_datastore_relationship.py +++ b/intersight/model/virtualization_vmware_datastore_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 VirtualizationVmwareDatastoreRelationship(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 VirtualizationVmwareDatastoreRelationship(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 VirtualizationVmwareDatastoreRelationship(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 VirtualizationVmwareDatastoreRelationship(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 VirtualizationVmwareDatastoreRelationship(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 VirtualizationVmwareDatastoreRelationship(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 VirtualizationVmwareDatastoreRelationship(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 VirtualizationVmwareDatastoreRelationship(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 VirtualizationVmwareDatastoreRelationship(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 VirtualizationVmwareDatastoreRelationship(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/virtualization_vmware_datastore_response.py b/intersight/model/virtualization_vmware_datastore_response.py index a1dc867675..6ae38cfb54 100644 --- a/intersight/model/virtualization_vmware_datastore_response.py +++ b/intersight/model/virtualization_vmware_datastore_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/virtualization_vmware_distributed_network.py b/intersight/model/virtualization_vmware_distributed_network.py index 79cf3d4f1d..6891625523 100644 --- a/intersight/model/virtualization_vmware_distributed_network.py +++ b/intersight/model/virtualization_vmware_distributed_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/virtualization_vmware_distributed_network_all_of.py b/intersight/model/virtualization_vmware_distributed_network_all_of.py index 4202be21a9..4d68c9b0b7 100644 --- a/intersight/model/virtualization_vmware_distributed_network_all_of.py +++ b/intersight/model/virtualization_vmware_distributed_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/virtualization_vmware_distributed_network_list.py b/intersight/model/virtualization_vmware_distributed_network_list.py index 5a46d82130..f328ee47a3 100644 --- a/intersight/model/virtualization_vmware_distributed_network_list.py +++ b/intersight/model/virtualization_vmware_distributed_network_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/virtualization_vmware_distributed_network_list_all_of.py b/intersight/model/virtualization_vmware_distributed_network_list_all_of.py index b675beed01..35fb4e6b39 100644 --- a/intersight/model/virtualization_vmware_distributed_network_list_all_of.py +++ b/intersight/model/virtualization_vmware_distributed_network_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/virtualization_vmware_distributed_network_relationship.py b/intersight/model/virtualization_vmware_distributed_network_relationship.py index 3712b8a88c..a76f153886 100644 --- a/intersight/model/virtualization_vmware_distributed_network_relationship.py +++ b/intersight/model/virtualization_vmware_distributed_network_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 """ @@ -100,6 +100,8 @@ class VirtualizationVmwareDistributedNetworkRelationship(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", @@ -116,6 +118,7 @@ class VirtualizationVmwareDistributedNetworkRelationship(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", @@ -164,9 +167,12 @@ class VirtualizationVmwareDistributedNetworkRelationship(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", @@ -230,10 +236,6 @@ class VirtualizationVmwareDistributedNetworkRelationship(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", @@ -242,6 +244,7 @@ class VirtualizationVmwareDistributedNetworkRelationship(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", @@ -490,6 +493,7 @@ class VirtualizationVmwareDistributedNetworkRelationship(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", @@ -659,6 +663,11 @@ class VirtualizationVmwareDistributedNetworkRelationship(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", @@ -774,6 +783,7 @@ class VirtualizationVmwareDistributedNetworkRelationship(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", @@ -805,6 +815,7 @@ class VirtualizationVmwareDistributedNetworkRelationship(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", @@ -837,12 +848,14 @@ class VirtualizationVmwareDistributedNetworkRelationship(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/virtualization_vmware_distributed_network_response.py b/intersight/model/virtualization_vmware_distributed_network_response.py index 438fc69d67..83b550dd37 100644 --- a/intersight/model/virtualization_vmware_distributed_network_response.py +++ b/intersight/model/virtualization_vmware_distributed_network_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/virtualization_vmware_distributed_switch.py b/intersight/model/virtualization_vmware_distributed_switch.py index d19367d6c7..7fd5fe7039 100644 --- a/intersight/model/virtualization_vmware_distributed_switch.py +++ b/intersight/model/virtualization_vmware_distributed_switch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_distributed_switch_all_of.py b/intersight/model/virtualization_vmware_distributed_switch_all_of.py index 99f305bf65..184d5d631d 100644 --- a/intersight/model/virtualization_vmware_distributed_switch_all_of.py +++ b/intersight/model/virtualization_vmware_distributed_switch_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_distributed_switch_list.py b/intersight/model/virtualization_vmware_distributed_switch_list.py index 77befb571f..e48c05cf14 100644 --- a/intersight/model/virtualization_vmware_distributed_switch_list.py +++ b/intersight/model/virtualization_vmware_distributed_switch_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/virtualization_vmware_distributed_switch_list_all_of.py b/intersight/model/virtualization_vmware_distributed_switch_list_all_of.py index c0857fe0ea..9f2a66b0f9 100644 --- a/intersight/model/virtualization_vmware_distributed_switch_list_all_of.py +++ b/intersight/model/virtualization_vmware_distributed_switch_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/virtualization_vmware_distributed_switch_relationship.py b/intersight/model/virtualization_vmware_distributed_switch_relationship.py index 49bfb403ae..18de942aba 100644 --- a/intersight/model/virtualization_vmware_distributed_switch_relationship.py +++ b/intersight/model/virtualization_vmware_distributed_switch_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 VirtualizationVmwareDistributedSwitchRelationship(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 VirtualizationVmwareDistributedSwitchRelationship(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 VirtualizationVmwareDistributedSwitchRelationship(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 VirtualizationVmwareDistributedSwitchRelationship(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 VirtualizationVmwareDistributedSwitchRelationship(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 VirtualizationVmwareDistributedSwitchRelationship(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 VirtualizationVmwareDistributedSwitchRelationship(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 VirtualizationVmwareDistributedSwitchRelationship(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 VirtualizationVmwareDistributedSwitchRelationship(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 VirtualizationVmwareDistributedSwitchRelationship(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/virtualization_vmware_distributed_switch_response.py b/intersight/model/virtualization_vmware_distributed_switch_response.py index 4911f918f0..0b85f8e31d 100644 --- a/intersight/model/virtualization_vmware_distributed_switch_response.py +++ b/intersight/model/virtualization_vmware_distributed_switch_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/virtualization_vmware_folder.py b/intersight/model/virtualization_vmware_folder.py index 92406afa77..c23568d477 100644 --- a/intersight/model/virtualization_vmware_folder.py +++ b/intersight/model/virtualization_vmware_folder.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_folder_all_of.py b/intersight/model/virtualization_vmware_folder_all_of.py index b162802310..ffd59356b1 100644 --- a/intersight/model/virtualization_vmware_folder_all_of.py +++ b/intersight/model/virtualization_vmware_folder_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_folder_list.py b/intersight/model/virtualization_vmware_folder_list.py index 1198bcfe34..c0d4803274 100644 --- a/intersight/model/virtualization_vmware_folder_list.py +++ b/intersight/model/virtualization_vmware_folder_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/virtualization_vmware_folder_list_all_of.py b/intersight/model/virtualization_vmware_folder_list_all_of.py index 89c770f946..1485a6aaea 100644 --- a/intersight/model/virtualization_vmware_folder_list_all_of.py +++ b/intersight/model/virtualization_vmware_folder_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/virtualization_vmware_folder_relationship.py b/intersight/model/virtualization_vmware_folder_relationship.py index 0ebd6531a0..ce4d817c13 100644 --- a/intersight/model/virtualization_vmware_folder_relationship.py +++ b/intersight/model/virtualization_vmware_folder_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 VirtualizationVmwareFolderRelationship(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 VirtualizationVmwareFolderRelationship(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 VirtualizationVmwareFolderRelationship(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 VirtualizationVmwareFolderRelationship(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 VirtualizationVmwareFolderRelationship(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 VirtualizationVmwareFolderRelationship(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 VirtualizationVmwareFolderRelationship(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 VirtualizationVmwareFolderRelationship(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 VirtualizationVmwareFolderRelationship(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 VirtualizationVmwareFolderRelationship(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/virtualization_vmware_folder_response.py b/intersight/model/virtualization_vmware_folder_response.py index 8455fa3170..cc8ab1eb52 100644 --- a/intersight/model/virtualization_vmware_folder_response.py +++ b/intersight/model/virtualization_vmware_folder_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/virtualization_vmware_host.py b/intersight/model/virtualization_vmware_host.py index 4c8fa5ff92..e24643120b 100644 --- a/intersight/model/virtualization_vmware_host.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_host_all_of.py b/intersight/model/virtualization_vmware_host_all_of.py index 27bddae5b7..fdecd46c1e 100644 --- a/intersight/model/virtualization_vmware_host_all_of.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_host_list.py b/intersight/model/virtualization_vmware_host_list.py index af987cd40c..5ff7676789 100644 --- a/intersight/model/virtualization_vmware_host_list.py +++ b/intersight/model/virtualization_vmware_host_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/virtualization_vmware_host_list_all_of.py b/intersight/model/virtualization_vmware_host_list_all_of.py index 391100021d..f2fc4c06bc 100644 --- a/intersight/model/virtualization_vmware_host_list_all_of.py +++ b/intersight/model/virtualization_vmware_host_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/virtualization_vmware_host_relationship.py b/intersight/model/virtualization_vmware_host_relationship.py index a49e2537ac..548ea00ec2 100644 --- a/intersight/model/virtualization_vmware_host_relationship.py +++ b/intersight/model/virtualization_vmware_host_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 VirtualizationVmwareHostRelationship(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 VirtualizationVmwareHostRelationship(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 VirtualizationVmwareHostRelationship(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 VirtualizationVmwareHostRelationship(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 VirtualizationVmwareHostRelationship(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 VirtualizationVmwareHostRelationship(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 VirtualizationVmwareHostRelationship(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 VirtualizationVmwareHostRelationship(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 VirtualizationVmwareHostRelationship(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 VirtualizationVmwareHostRelationship(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/virtualization_vmware_host_response.py b/intersight/model/virtualization_vmware_host_response.py index debfac337e..5c026954b8 100644 --- a/intersight/model/virtualization_vmware_host_response.py +++ b/intersight/model/virtualization_vmware_host_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/virtualization_vmware_kernel_network.py b/intersight/model/virtualization_vmware_kernel_network.py index 0b917a0155..12196b63b7 100644 --- a/intersight/model/virtualization_vmware_kernel_network.py +++ b/intersight/model/virtualization_vmware_kernel_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/virtualization_vmware_kernel_network_all_of.py b/intersight/model/virtualization_vmware_kernel_network_all_of.py index ccbbd00db6..28d262eff2 100644 --- a/intersight/model/virtualization_vmware_kernel_network_all_of.py +++ b/intersight/model/virtualization_vmware_kernel_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/virtualization_vmware_kernel_network_list.py b/intersight/model/virtualization_vmware_kernel_network_list.py index 2c66ce3b48..c5ae2f75e8 100644 --- a/intersight/model/virtualization_vmware_kernel_network_list.py +++ b/intersight/model/virtualization_vmware_kernel_network_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/virtualization_vmware_kernel_network_list_all_of.py b/intersight/model/virtualization_vmware_kernel_network_list_all_of.py index 3a3b283e78..7caf0c8f31 100644 --- a/intersight/model/virtualization_vmware_kernel_network_list_all_of.py +++ b/intersight/model/virtualization_vmware_kernel_network_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/virtualization_vmware_kernel_network_response.py b/intersight/model/virtualization_vmware_kernel_network_response.py index 83790b46e3..7388f0e16e 100644 --- a/intersight/model/virtualization_vmware_kernel_network_response.py +++ b/intersight/model/virtualization_vmware_kernel_network_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/virtualization_vmware_network.py b/intersight/model/virtualization_vmware_network.py index 692a4806f3..6720ac0d42 100644 --- a/intersight/model/virtualization_vmware_network.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_network_all_of.py b/intersight/model/virtualization_vmware_network_all_of.py index 8289005bfe..37e5f64179 100644 --- a/intersight/model/virtualization_vmware_network_all_of.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_network_list.py b/intersight/model/virtualization_vmware_network_list.py index 15b89cfa71..0d2fdd8a64 100644 --- a/intersight/model/virtualization_vmware_network_list.py +++ b/intersight/model/virtualization_vmware_network_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/virtualization_vmware_network_list_all_of.py b/intersight/model/virtualization_vmware_network_list_all_of.py index b37052e3a0..d5333bffd4 100644 --- a/intersight/model/virtualization_vmware_network_list_all_of.py +++ b/intersight/model/virtualization_vmware_network_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/virtualization_vmware_network_relationship.py b/intersight/model/virtualization_vmware_network_relationship.py index 591d677f91..22545828ee 100644 --- a/intersight/model/virtualization_vmware_network_relationship.py +++ b/intersight/model/virtualization_vmware_network_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 VirtualizationVmwareNetworkRelationship(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 VirtualizationVmwareNetworkRelationship(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 VirtualizationVmwareNetworkRelationship(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 VirtualizationVmwareNetworkRelationship(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 VirtualizationVmwareNetworkRelationship(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 VirtualizationVmwareNetworkRelationship(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 VirtualizationVmwareNetworkRelationship(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 VirtualizationVmwareNetworkRelationship(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 VirtualizationVmwareNetworkRelationship(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 VirtualizationVmwareNetworkRelationship(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/virtualization_vmware_network_response.py b/intersight/model/virtualization_vmware_network_response.py index 9fb6cf54b4..22cb585619 100644 --- a/intersight/model/virtualization_vmware_network_response.py +++ b/intersight/model/virtualization_vmware_network_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/virtualization_vmware_physical_network_interface.py b/intersight/model/virtualization_vmware_physical_network_interface.py index c9179017f3..090117d0fe 100644 --- a/intersight/model/virtualization_vmware_physical_network_interface.py +++ b/intersight/model/virtualization_vmware_physical_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/virtualization_vmware_physical_network_interface_all_of.py b/intersight/model/virtualization_vmware_physical_network_interface_all_of.py index 2e5664e6a5..5e34c2d70e 100644 --- a/intersight/model/virtualization_vmware_physical_network_interface_all_of.py +++ b/intersight/model/virtualization_vmware_physical_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/virtualization_vmware_physical_network_interface_list.py b/intersight/model/virtualization_vmware_physical_network_interface_list.py index c5b57d78e3..22cf8adc64 100644 --- a/intersight/model/virtualization_vmware_physical_network_interface_list.py +++ b/intersight/model/virtualization_vmware_physical_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/virtualization_vmware_physical_network_interface_list_all_of.py b/intersight/model/virtualization_vmware_physical_network_interface_list_all_of.py index de4cd4f8cc..d64ba4198b 100644 --- a/intersight/model/virtualization_vmware_physical_network_interface_list_all_of.py +++ b/intersight/model/virtualization_vmware_physical_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/virtualization_vmware_physical_network_interface_relationship.py b/intersight/model/virtualization_vmware_physical_network_interface_relationship.py index d51dd2c7f3..153af35f33 100644 --- a/intersight/model/virtualization_vmware_physical_network_interface_relationship.py +++ b/intersight/model/virtualization_vmware_physical_network_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 """ @@ -76,6 +76,8 @@ class VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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 VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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 VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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 VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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 VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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 VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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 VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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 VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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 VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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 VirtualizationVmwarePhysicalNetworkInterfaceRelationship(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/virtualization_vmware_physical_network_interface_response.py b/intersight/model/virtualization_vmware_physical_network_interface_response.py index 5cae011c2f..4fc25feb62 100644 --- a/intersight/model/virtualization_vmware_physical_network_interface_response.py +++ b/intersight/model/virtualization_vmware_physical_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/virtualization_vmware_remote_display_info.py b/intersight/model/virtualization_vmware_remote_display_info.py index 4962bca7d4..1d9902b85d 100644 --- a/intersight/model/virtualization_vmware_remote_display_info.py +++ b/intersight/model/virtualization_vmware_remote_display_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/virtualization_vmware_remote_display_info_all_of.py b/intersight/model/virtualization_vmware_remote_display_info_all_of.py index e9a88e88a8..025a6a4597 100644 --- a/intersight/model/virtualization_vmware_remote_display_info_all_of.py +++ b/intersight/model/virtualization_vmware_remote_display_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/virtualization_vmware_resource_consumption.py b/intersight/model/virtualization_vmware_resource_consumption.py index aa863b450b..f22c76a1a8 100644 --- a/intersight/model/virtualization_vmware_resource_consumption.py +++ b/intersight/model/virtualization_vmware_resource_consumption.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_resource_consumption_all_of.py b/intersight/model/virtualization_vmware_resource_consumption_all_of.py index 7223544765..8c91eec785 100644 --- a/intersight/model/virtualization_vmware_resource_consumption_all_of.py +++ b/intersight/model/virtualization_vmware_resource_consumption_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_shares_info.py b/intersight/model/virtualization_vmware_shares_info.py index 85254ba3d4..a800874da8 100644 --- a/intersight/model/virtualization_vmware_shares_info.py +++ b/intersight/model/virtualization_vmware_shares_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/virtualization_vmware_shares_info_all_of.py b/intersight/model/virtualization_vmware_shares_info_all_of.py index 3d9466ed90..8fab51e9fc 100644 --- a/intersight/model/virtualization_vmware_shares_info_all_of.py +++ b/intersight/model/virtualization_vmware_shares_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/virtualization_vmware_teaming_and_failover.py b/intersight/model/virtualization_vmware_teaming_and_failover.py index 9455882ae4..f9364d0c60 100644 --- a/intersight/model/virtualization_vmware_teaming_and_failover.py +++ b/intersight/model/virtualization_vmware_teaming_and_failover.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_teaming_and_failover_all_of.py b/intersight/model/virtualization_vmware_teaming_and_failover_all_of.py index 5dd56fb967..cc34dfe07b 100644 --- a/intersight/model/virtualization_vmware_teaming_and_failover_all_of.py +++ b/intersight/model/virtualization_vmware_teaming_and_failover_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_uplink_port.py b/intersight/model/virtualization_vmware_uplink_port.py index 3e31f001c5..8adde8fed3 100644 --- a/intersight/model/virtualization_vmware_uplink_port.py +++ b/intersight/model/virtualization_vmware_uplink_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/virtualization_vmware_uplink_port_all_of.py b/intersight/model/virtualization_vmware_uplink_port_all_of.py index 5e65c115d0..e0f18d8e50 100644 --- a/intersight/model/virtualization_vmware_uplink_port_all_of.py +++ b/intersight/model/virtualization_vmware_uplink_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/virtualization_vmware_uplink_port_list.py b/intersight/model/virtualization_vmware_uplink_port_list.py index cdc0581d64..9702e099b0 100644 --- a/intersight/model/virtualization_vmware_uplink_port_list.py +++ b/intersight/model/virtualization_vmware_uplink_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/virtualization_vmware_uplink_port_list_all_of.py b/intersight/model/virtualization_vmware_uplink_port_list_all_of.py index 0c2ed5eb7f..b51a0aea2e 100644 --- a/intersight/model/virtualization_vmware_uplink_port_list_all_of.py +++ b/intersight/model/virtualization_vmware_uplink_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/virtualization_vmware_uplink_port_response.py b/intersight/model/virtualization_vmware_uplink_port_response.py index de596b1c0c..c498bf385b 100644 --- a/intersight/model/virtualization_vmware_uplink_port_response.py +++ b/intersight/model/virtualization_vmware_uplink_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/virtualization_vmware_vcenter.py b/intersight/model/virtualization_vmware_vcenter.py index 8f2db71543..9f6a7b34a8 100644 --- a/intersight/model/virtualization_vmware_vcenter.py +++ b/intersight/model/virtualization_vmware_vcenter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_vcenter_list.py b/intersight/model/virtualization_vmware_vcenter_list.py index e460c2aa14..41ac6c2bf2 100644 --- a/intersight/model/virtualization_vmware_vcenter_list.py +++ b/intersight/model/virtualization_vmware_vcenter_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/virtualization_vmware_vcenter_list_all_of.py b/intersight/model/virtualization_vmware_vcenter_list_all_of.py index 322eb017c7..06aa23b7a3 100644 --- a/intersight/model/virtualization_vmware_vcenter_list_all_of.py +++ b/intersight/model/virtualization_vmware_vcenter_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/virtualization_vmware_vcenter_relationship.py b/intersight/model/virtualization_vmware_vcenter_relationship.py index c459de853c..107648c1bf 100644 --- a/intersight/model/virtualization_vmware_vcenter_relationship.py +++ b/intersight/model/virtualization_vmware_vcenter_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 VirtualizationVmwareVcenterRelationship(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 VirtualizationVmwareVcenterRelationship(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 VirtualizationVmwareVcenterRelationship(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 VirtualizationVmwareVcenterRelationship(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 VirtualizationVmwareVcenterRelationship(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 VirtualizationVmwareVcenterRelationship(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 VirtualizationVmwareVcenterRelationship(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 VirtualizationVmwareVcenterRelationship(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 VirtualizationVmwareVcenterRelationship(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 VirtualizationVmwareVcenterRelationship(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/virtualization_vmware_vcenter_response.py b/intersight/model/virtualization_vmware_vcenter_response.py index bc13798693..ee8dfb6881 100644 --- a/intersight/model/virtualization_vmware_vcenter_response.py +++ b/intersight/model/virtualization_vmware_vcenter_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/virtualization_vmware_virtual_disk.py b/intersight/model/virtualization_vmware_virtual_disk.py index 80faea6689..afda10043c 100644 --- a/intersight/model/virtualization_vmware_virtual_disk.py +++ b/intersight/model/virtualization_vmware_virtual_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/virtualization_vmware_virtual_disk_all_of.py b/intersight/model/virtualization_vmware_virtual_disk_all_of.py index c04c7beb0e..8f6ff9dca2 100644 --- a/intersight/model/virtualization_vmware_virtual_disk_all_of.py +++ b/intersight/model/virtualization_vmware_virtual_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/virtualization_vmware_virtual_disk_list.py b/intersight/model/virtualization_vmware_virtual_disk_list.py index 9218242c05..687fe2a9fa 100644 --- a/intersight/model/virtualization_vmware_virtual_disk_list.py +++ b/intersight/model/virtualization_vmware_virtual_disk_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/virtualization_vmware_virtual_disk_list_all_of.py b/intersight/model/virtualization_vmware_virtual_disk_list_all_of.py index 1a547b342c..b471dd0a7f 100644 --- a/intersight/model/virtualization_vmware_virtual_disk_list_all_of.py +++ b/intersight/model/virtualization_vmware_virtual_disk_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/virtualization_vmware_virtual_disk_response.py b/intersight/model/virtualization_vmware_virtual_disk_response.py index 94acf429dc..2622cea758 100644 --- a/intersight/model/virtualization_vmware_virtual_disk_response.py +++ b/intersight/model/virtualization_vmware_virtual_disk_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/virtualization_vmware_virtual_machine.py b/intersight/model/virtualization_vmware_virtual_machine.py index 41cc94114d..94153a7b65 100644 --- a/intersight/model/virtualization_vmware_virtual_machine.py +++ b/intersight/model/virtualization_vmware_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 """ @@ -255,11 +255,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 @@ -341,11 +343,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 @@ -467,11 +471,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/virtualization_vmware_virtual_machine_all_of.py b/intersight/model/virtualization_vmware_virtual_machine_all_of.py index de1f93e17b..bd39c63957 100644 --- a/intersight/model/virtualization_vmware_virtual_machine_all_of.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_virtual_machine_list.py b/intersight/model/virtualization_vmware_virtual_machine_list.py index 72ed05c2e6..9ab16f3d52 100644 --- a/intersight/model/virtualization_vmware_virtual_machine_list.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_virtual_machine_list_all_of.py b/intersight/model/virtualization_vmware_virtual_machine_list_all_of.py index fee56a4f0e..739ef48977 100644 --- a/intersight/model/virtualization_vmware_virtual_machine_list_all_of.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_virtual_machine_relationship.py b/intersight/model/virtualization_vmware_virtual_machine_relationship.py index fd458f6528..3969b6de16 100644 --- a/intersight/model/virtualization_vmware_virtual_machine_relationship.py +++ b/intersight/model/virtualization_vmware_virtual_machine_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 """ @@ -153,6 +153,8 @@ class VirtualizationVmwareVirtualMachineRelationship(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", @@ -169,6 +171,7 @@ class VirtualizationVmwareVirtualMachineRelationship(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", @@ -217,9 +220,12 @@ class VirtualizationVmwareVirtualMachineRelationship(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", @@ -283,10 +289,6 @@ class VirtualizationVmwareVirtualMachineRelationship(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", @@ -295,6 +297,7 @@ class VirtualizationVmwareVirtualMachineRelationship(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", @@ -543,6 +546,7 @@ class VirtualizationVmwareVirtualMachineRelationship(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", @@ -712,6 +716,11 @@ class VirtualizationVmwareVirtualMachineRelationship(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", @@ -827,6 +836,7 @@ class VirtualizationVmwareVirtualMachineRelationship(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", @@ -858,6 +868,7 @@ class VirtualizationVmwareVirtualMachineRelationship(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", @@ -890,12 +901,14 @@ class VirtualizationVmwareVirtualMachineRelationship(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", }, } @@ -954,11 +967,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 @@ -1045,11 +1060,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 @@ -1173,11 +1190,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/virtualization_vmware_virtual_machine_response.py b/intersight/model/virtualization_vmware_virtual_machine_response.py index db989ddc55..6a54a1af15 100644 --- a/intersight/model/virtualization_vmware_virtual_machine_response.py +++ b/intersight/model/virtualization_vmware_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/virtualization_vmware_virtual_machine_snapshot.py b/intersight/model/virtualization_vmware_virtual_machine_snapshot.py new file mode 100644 index 0000000000..19df8d52d0 --- /dev/null +++ b/intersight/model/virtualization_vmware_virtual_machine_snapshot.py @@ -0,0 +1,332 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.mo_base_mo_relationship import MoBaseMoRelationship + from intersight.model.mo_tag import MoTag + from intersight.model.mo_version_context import MoVersionContext + from intersight.model.virtualization_base_virtual_machine_snapshot import VirtualizationBaseVirtualMachineSnapshot + from intersight.model.virtualization_vmware_virtual_machine_relationship import VirtualizationVmwareVirtualMachineRelationship + from intersight.model.virtualization_vmware_virtual_machine_snapshot_all_of import VirtualizationVmwareVirtualMachineSnapshotAllOf + globals()['AssetDeviceRegistrationRelationship'] = AssetDeviceRegistrationRelationship + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['VirtualizationBaseVirtualMachineSnapshot'] = VirtualizationBaseVirtualMachineSnapshot + globals()['VirtualizationVmwareVirtualMachineRelationship'] = VirtualizationVmwareVirtualMachineRelationship + globals()['VirtualizationVmwareVirtualMachineSnapshotAllOf'] = VirtualizationVmwareVirtualMachineSnapshotAllOf + + +class VirtualizationVmwareVirtualMachineSnapshot(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',): { + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", + }, + ('object_type',): { + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", + }, + } + + 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 + 'creation_time': (datetime,), # noqa: E501 + 'current_snapshot': (bool,), # noqa: E501 + 'description': (str,), # noqa: E501 + 'golden': (bool,), # noqa: E501 + 'key': (int,), # noqa: E501 + 'predecessor_id': (int,), # noqa: E501 + 'quiesced': (bool,), # noqa: E501 + 'ref_value': (str,), # noqa: E501 + 'snapshot_size': (int,), # noqa: E501 + 'virtual_machine': (VirtualizationVmwareVirtualMachineRelationship,), # 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 + 'registered_device': (AssetDeviceRegistrationRelationship,), # noqa: E501 + 'identity': (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 + 'creation_time': 'CreationTime', # noqa: E501 + 'current_snapshot': 'CurrentSnapshot', # noqa: E501 + 'description': 'Description', # noqa: E501 + 'golden': 'Golden', # noqa: E501 + 'key': 'Key', # noqa: E501 + 'predecessor_id': 'PredecessorId', # noqa: E501 + 'quiesced': 'Quiesced', # noqa: E501 + 'ref_value': 'RefValue', # noqa: E501 + 'snapshot_size': 'SnapshotSize', # noqa: E501 + 'virtual_machine': 'VirtualMachine', # 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 + 'registered_device': 'RegisteredDevice', # noqa: E501 + 'identity': 'Identity', # 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 + """VirtualizationVmwareVirtualMachineSnapshot - 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 "virtualization.VmwareVirtualMachineSnapshot", must be one of ["virtualization.VmwareVirtualMachineSnapshot", ] # 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 "virtualization.VmwareVirtualMachineSnapshot", must be one of ["virtualization.VmwareVirtualMachineSnapshot", ] # 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,) + creation_time (datetime): Snapshot creation time. Time at which snapshot gets created.. [optional] # noqa: E501 + current_snapshot (bool): If yes, it determines it is the latest snapshot of the virtual machine.. [optional] # noqa: E501 + description (str): User provided description of the virtual machine snapshot.. [optional] # noqa: E501 + golden (bool): If yes, the virtual machine snapshot cannot be deleted.. [optional] # noqa: E501 + key (int): The internally assigned id/key of virtual machine snapshot.. [optional] # noqa: E501 + predecessor_id (int): Predecessor id is the id of the parent snapshot.. [optional] # noqa: E501 + quiesced (bool): Quiesce pauses all the I/O operations on virtual machine till the snapshot is taken.. [optional] # noqa: E501 + ref_value (str): Internally assigned MOR reference value.. [optional] # noqa: E501 + snapshot_size (int): Size of the snapshot file created of the virtual machine, stored in bytes.. [optional] # noqa: E501 + virtual_machine (VirtualizationVmwareVirtualMachineRelationship): [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 + registered_device (AssetDeviceRegistrationRelationship): [optional] # noqa: E501 + identity (str): The internally generated identity of the snapshot. This entity is not manipulated by users. It aids in uniquely identifying the snapshot object. For VMware, this is a MOR (managed object reference).. [optional] # noqa: E501 + name (str): User name provided to identify the snapshot.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "virtualization.VmwareVirtualMachineSnapshot") + object_type = kwargs.get('object_type', "virtualization.VmwareVirtualMachineSnapshot") + _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': [ + VirtualizationBaseVirtualMachineSnapshot, + VirtualizationVmwareVirtualMachineSnapshotAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/virtualization_vmware_virtual_machine_snapshot_all_of.py b/intersight/model/virtualization_vmware_virtual_machine_snapshot_all_of.py new file mode 100644 index 0000000000..ebca090287 --- /dev/null +++ b/intersight/model/virtualization_vmware_virtual_machine_snapshot_all_of.py @@ -0,0 +1,217 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.virtualization_vmware_virtual_machine_relationship import VirtualizationVmwareVirtualMachineRelationship + globals()['VirtualizationVmwareVirtualMachineRelationship'] = VirtualizationVmwareVirtualMachineRelationship + + +class VirtualizationVmwareVirtualMachineSnapshotAllOf(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',): { + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", + }, + ('object_type',): { + 'VIRTUALIZATION.VMWAREVIRTUALMACHINESNAPSHOT': "virtualization.VmwareVirtualMachineSnapshot", + }, + } + + 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 + 'creation_time': (datetime,), # noqa: E501 + 'current_snapshot': (bool,), # noqa: E501 + 'description': (str,), # noqa: E501 + 'golden': (bool,), # noqa: E501 + 'key': (int,), # noqa: E501 + 'predecessor_id': (int,), # noqa: E501 + 'quiesced': (bool,), # noqa: E501 + 'ref_value': (str,), # noqa: E501 + 'snapshot_size': (int,), # noqa: E501 + 'virtual_machine': (VirtualizationVmwareVirtualMachineRelationship,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'creation_time': 'CreationTime', # noqa: E501 + 'current_snapshot': 'CurrentSnapshot', # noqa: E501 + 'description': 'Description', # noqa: E501 + 'golden': 'Golden', # noqa: E501 + 'key': 'Key', # noqa: E501 + 'predecessor_id': 'PredecessorId', # noqa: E501 + 'quiesced': 'Quiesced', # noqa: E501 + 'ref_value': 'RefValue', # noqa: E501 + 'snapshot_size': 'SnapshotSize', # noqa: E501 + 'virtual_machine': 'VirtualMachine', # 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 + """VirtualizationVmwareVirtualMachineSnapshotAllOf - 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 "virtualization.VmwareVirtualMachineSnapshot", must be one of ["virtualization.VmwareVirtualMachineSnapshot", ] # 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 "virtualization.VmwareVirtualMachineSnapshot", must be one of ["virtualization.VmwareVirtualMachineSnapshot", ] # 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,) + creation_time (datetime): Snapshot creation time. Time at which snapshot gets created.. [optional] # noqa: E501 + current_snapshot (bool): If yes, it determines it is the latest snapshot of the virtual machine.. [optional] # noqa: E501 + description (str): User provided description of the virtual machine snapshot.. [optional] # noqa: E501 + golden (bool): If yes, the virtual machine snapshot cannot be deleted.. [optional] # noqa: E501 + key (int): The internally assigned id/key of virtual machine snapshot.. [optional] # noqa: E501 + predecessor_id (int): Predecessor id is the id of the parent snapshot.. [optional] # noqa: E501 + quiesced (bool): Quiesce pauses all the I/O operations on virtual machine till the snapshot is taken.. [optional] # noqa: E501 + ref_value (str): Internally assigned MOR reference value.. [optional] # noqa: E501 + snapshot_size (int): Size of the snapshot file created of the virtual machine, stored in bytes.. [optional] # noqa: E501 + virtual_machine (VirtualizationVmwareVirtualMachineRelationship): [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "virtualization.VmwareVirtualMachineSnapshot") + object_type = kwargs.get('object_type', "virtualization.VmwareVirtualMachineSnapshot") + _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/virtualization_vmware_virtual_machine_snapshot_list.py b/intersight/model/virtualization_vmware_virtual_machine_snapshot_list.py new file mode 100644 index 0000000000..a431a020d4 --- /dev/null +++ b/intersight/model/virtualization_vmware_virtual_machine_snapshot_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.mo_base_response import MoBaseResponse + from intersight.model.virtualization_vmware_virtual_machine_snapshot import VirtualizationVmwareVirtualMachineSnapshot + from intersight.model.virtualization_vmware_virtual_machine_snapshot_list_all_of import VirtualizationVmwareVirtualMachineSnapshotListAllOf + globals()['MoBaseResponse'] = MoBaseResponse + globals()['VirtualizationVmwareVirtualMachineSnapshot'] = VirtualizationVmwareVirtualMachineSnapshot + globals()['VirtualizationVmwareVirtualMachineSnapshotListAllOf'] = VirtualizationVmwareVirtualMachineSnapshotListAllOf + + +class VirtualizationVmwareVirtualMachineSnapshotList(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': ([VirtualizationVmwareVirtualMachineSnapshot], 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 + """VirtualizationVmwareVirtualMachineSnapshotList - 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 'virtualization.VmwareVirtualMachineSnapshot' 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 ([VirtualizationVmwareVirtualMachineSnapshot], none_type): The array of 'virtualization.VmwareVirtualMachineSnapshot' 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': [ + MoBaseResponse, + VirtualizationVmwareVirtualMachineSnapshotListAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/virtualization_vmware_virtual_machine_snapshot_list_all_of.py b/intersight/model/virtualization_vmware_virtual_machine_snapshot_list_all_of.py new file mode 100644 index 0000000000..19b5208c9a --- /dev/null +++ b/intersight/model/virtualization_vmware_virtual_machine_snapshot_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.virtualization_vmware_virtual_machine_snapshot import VirtualizationVmwareVirtualMachineSnapshot + globals()['VirtualizationVmwareVirtualMachineSnapshot'] = VirtualizationVmwareVirtualMachineSnapshot + + +class VirtualizationVmwareVirtualMachineSnapshotListAllOf(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': ([VirtualizationVmwareVirtualMachineSnapshot], 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 + """VirtualizationVmwareVirtualMachineSnapshotListAllOf - 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 'virtualization.VmwareVirtualMachineSnapshot' 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 ([VirtualizationVmwareVirtualMachineSnapshot], none_type): The array of 'virtualization.VmwareVirtualMachineSnapshot' 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/virtualization_vmware_virtual_machine_snapshot_response.py b/intersight/model/virtualization_vmware_virtual_machine_snapshot_response.py new file mode 100644 index 0000000000..92b1edba72 --- /dev/null +++ b/intersight/model/virtualization_vmware_virtual_machine_snapshot_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.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 + from intersight.model.virtualization_vmware_virtual_machine_snapshot_list import VirtualizationVmwareVirtualMachineSnapshotList + globals()['MoAggregateTransform'] = MoAggregateTransform + globals()['MoDocumentCount'] = MoDocumentCount + globals()['MoTagKeySummary'] = MoTagKeySummary + globals()['MoTagSummary'] = MoTagSummary + globals()['VirtualizationVmwareVirtualMachineSnapshotList'] = VirtualizationVmwareVirtualMachineSnapshotList + + +class VirtualizationVmwareVirtualMachineSnapshotResponse(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 = { + 'mo.AggregateTransform': MoAggregateTransform, + 'mo.DocumentCount': MoDocumentCount, + 'mo.TagSummary': MoTagSummary, + 'virtualization.VmwareVirtualMachineSnapshot.List': VirtualizationVmwareVirtualMachineSnapshotList, + } + 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 + """VirtualizationVmwareVirtualMachineSnapshotResponse - 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 'virtualization.VmwareVirtualMachineSnapshot' 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': [ + MoAggregateTransform, + MoDocumentCount, + MoTagSummary, + VirtualizationVmwareVirtualMachineSnapshotList, + ], + } diff --git a/intersight/model/virtualization_vmware_virtual_network_interface.py b/intersight/model/virtualization_vmware_virtual_network_interface.py index 346b971a46..422d69ff7e 100644 --- a/intersight/model/virtualization_vmware_virtual_network_interface.py +++ b/intersight/model/virtualization_vmware_virtual_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/virtualization_vmware_virtual_network_interface_all_of.py b/intersight/model/virtualization_vmware_virtual_network_interface_all_of.py index a82976bb25..ec1a42c70c 100644 --- a/intersight/model/virtualization_vmware_virtual_network_interface_all_of.py +++ b/intersight/model/virtualization_vmware_virtual_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/virtualization_vmware_virtual_network_interface_list.py b/intersight/model/virtualization_vmware_virtual_network_interface_list.py index af0dce9528..e126b8e6ab 100644 --- a/intersight/model/virtualization_vmware_virtual_network_interface_list.py +++ b/intersight/model/virtualization_vmware_virtual_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/virtualization_vmware_virtual_network_interface_list_all_of.py b/intersight/model/virtualization_vmware_virtual_network_interface_list_all_of.py index c6e82ea022..e3b6190108 100644 --- a/intersight/model/virtualization_vmware_virtual_network_interface_list_all_of.py +++ b/intersight/model/virtualization_vmware_virtual_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/virtualization_vmware_virtual_network_interface_response.py b/intersight/model/virtualization_vmware_virtual_network_interface_response.py index da7901206b..ab69cc3493 100644 --- a/intersight/model/virtualization_vmware_virtual_network_interface_response.py +++ b/intersight/model/virtualization_vmware_virtual_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/virtualization_vmware_virtual_switch.py b/intersight/model/virtualization_vmware_virtual_switch.py index da0a673d7b..a45d4cdc5d 100644 --- a/intersight/model/virtualization_vmware_virtual_switch.py +++ b/intersight/model/virtualization_vmware_virtual_switch.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_virtual_switch_all_of.py b/intersight/model/virtualization_vmware_virtual_switch_all_of.py index f35185acc6..fad5b48616 100644 --- a/intersight/model/virtualization_vmware_virtual_switch_all_of.py +++ b/intersight/model/virtualization_vmware_virtual_switch_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/virtualization_vmware_virtual_switch_list.py b/intersight/model/virtualization_vmware_virtual_switch_list.py index 6c1616f891..9ee28b701b 100644 --- a/intersight/model/virtualization_vmware_virtual_switch_list.py +++ b/intersight/model/virtualization_vmware_virtual_switch_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/virtualization_vmware_virtual_switch_list_all_of.py b/intersight/model/virtualization_vmware_virtual_switch_list_all_of.py index 968d8bfe22..3eb73d1ed6 100644 --- a/intersight/model/virtualization_vmware_virtual_switch_list_all_of.py +++ b/intersight/model/virtualization_vmware_virtual_switch_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/virtualization_vmware_virtual_switch_relationship.py b/intersight/model/virtualization_vmware_virtual_switch_relationship.py index 4f9cc50c5a..87f99573cf 100644 --- a/intersight/model/virtualization_vmware_virtual_switch_relationship.py +++ b/intersight/model/virtualization_vmware_virtual_switch_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 VirtualizationVmwareVirtualSwitchRelationship(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 VirtualizationVmwareVirtualSwitchRelationship(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 VirtualizationVmwareVirtualSwitchRelationship(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 VirtualizationVmwareVirtualSwitchRelationship(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 VirtualizationVmwareVirtualSwitchRelationship(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 VirtualizationVmwareVirtualSwitchRelationship(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 VirtualizationVmwareVirtualSwitchRelationship(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 VirtualizationVmwareVirtualSwitchRelationship(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 VirtualizationVmwareVirtualSwitchRelationship(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 VirtualizationVmwareVirtualSwitchRelationship(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/virtualization_vmware_virtual_switch_response.py b/intersight/model/virtualization_vmware_virtual_switch_response.py index 4388f7b26b..1b571c2f39 100644 --- a/intersight/model/virtualization_vmware_virtual_switch_response.py +++ b/intersight/model/virtualization_vmware_virtual_switch_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/virtualization_vmware_vlan_range.py b/intersight/model/virtualization_vmware_vlan_range.py index 1a42d4c0f1..07fec81108 100644 --- a/intersight/model/virtualization_vmware_vlan_range.py +++ b/intersight/model/virtualization_vmware_vlan_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/virtualization_vmware_vlan_range_all_of.py b/intersight/model/virtualization_vmware_vlan_range_all_of.py index cec9809255..4989d8f027 100644 --- a/intersight/model/virtualization_vmware_vlan_range_all_of.py +++ b/intersight/model/virtualization_vmware_vlan_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/virtualization_vmware_vm_cpu_share_info.py b/intersight/model/virtualization_vmware_vm_cpu_share_info.py index e8d261cc55..a1972ccb2a 100644 --- a/intersight/model/virtualization_vmware_vm_cpu_share_info.py +++ b/intersight/model/virtualization_vmware_vm_cpu_share_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/virtualization_vmware_vm_cpu_share_info_all_of.py b/intersight/model/virtualization_vmware_vm_cpu_share_info_all_of.py index f3f5f74197..9d00c3633d 100644 --- a/intersight/model/virtualization_vmware_vm_cpu_share_info_all_of.py +++ b/intersight/model/virtualization_vmware_vm_cpu_share_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/virtualization_vmware_vm_cpu_socket_info.py b/intersight/model/virtualization_vmware_vm_cpu_socket_info.py index 0b7ac7e854..93713ae816 100644 --- a/intersight/model/virtualization_vmware_vm_cpu_socket_info.py +++ b/intersight/model/virtualization_vmware_vm_cpu_socket_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/virtualization_vmware_vm_cpu_socket_info_all_of.py b/intersight/model/virtualization_vmware_vm_cpu_socket_info_all_of.py index 5fd6db7b95..87f8c58eae 100644 --- a/intersight/model/virtualization_vmware_vm_cpu_socket_info_all_of.py +++ b/intersight/model/virtualization_vmware_vm_cpu_socket_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/virtualization_vmware_vm_disk_commit_info.py b/intersight/model/virtualization_vmware_vm_disk_commit_info.py index 344724f813..a84f3b261d 100644 --- a/intersight/model/virtualization_vmware_vm_disk_commit_info.py +++ b/intersight/model/virtualization_vmware_vm_disk_commit_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/virtualization_vmware_vm_disk_commit_info_all_of.py b/intersight/model/virtualization_vmware_vm_disk_commit_info_all_of.py index deb654272f..8db4c55a32 100644 --- a/intersight/model/virtualization_vmware_vm_disk_commit_info_all_of.py +++ b/intersight/model/virtualization_vmware_vm_disk_commit_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/virtualization_vmware_vm_memory_share_info.py b/intersight/model/virtualization_vmware_vm_memory_share_info.py index 0c6b38c422..57c6576fbd 100644 --- a/intersight/model/virtualization_vmware_vm_memory_share_info.py +++ b/intersight/model/virtualization_vmware_vm_memory_share_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/virtualization_vmware_vm_memory_share_info_all_of.py b/intersight/model/virtualization_vmware_vm_memory_share_info_all_of.py index 062beb8b72..6f09378e75 100644 --- a/intersight/model/virtualization_vmware_vm_memory_share_info_all_of.py +++ b/intersight/model/virtualization_vmware_vm_memory_share_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/vmedia_mapping.py b/intersight/model/vmedia_mapping.py index 5a6994aa37..9d5ba70d97 100644 --- a/intersight/model/vmedia_mapping.py +++ b/intersight/model/vmedia_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/vmedia_mapping_all_of.py b/intersight/model/vmedia_mapping_all_of.py index 70881f1798..d056157f6a 100644 --- a/intersight/model/vmedia_mapping_all_of.py +++ b/intersight/model/vmedia_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/vmedia_policy.py b/intersight/model/vmedia_policy.py index d16e1baa76..59ae7fe04b 100644 --- a/intersight/model/vmedia_policy.py +++ b/intersight/model/vmedia_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 """ @@ -229,7 +229,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) enabled (bool): State of the Virtual Media service on the endpoint.. [optional] if omitted the server will use the default value of True # noqa: E501 - encryption (bool): If enabled, allows encryption of all Virtual Media communications.. [optional] if omitted the server will use the default value of True # noqa: E501 + encryption (bool): If enabled, allows encryption of all Virtual Media communications. Please note that this is no longer applicable for servers running versions 4.2 and above.. [optional] if omitted the server will use the default value of True # noqa: E501 low_power_usb (bool): If enabled, the virtual drives appear on the boot selection menu after mapping the image and rebooting the host.. [optional] if omitted the server will use the default value of True # noqa: E501 mappings ([VmediaMapping], none_type): [optional] # noqa: E501 organization (OrganizationOrganizationRelationship): [optional] # noqa: E501 diff --git a/intersight/model/vmedia_policy_all_of.py b/intersight/model/vmedia_policy_all_of.py index ab27a7d530..03a1c4d171 100644 --- a/intersight/model/vmedia_policy_all_of.py +++ b/intersight/model/vmedia_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 """ @@ -165,7 +165,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 through its discriminator because we passed in _visited_composed_classes = (Animal,) enabled (bool): State of the Virtual Media service on the endpoint.. [optional] if omitted the server will use the default value of True # noqa: E501 - encryption (bool): If enabled, allows encryption of all Virtual Media communications.. [optional] if omitted the server will use the default value of True # noqa: E501 + encryption (bool): If enabled, allows encryption of all Virtual Media communications. Please note that this is no longer applicable for servers running versions 4.2 and above.. [optional] if omitted the server will use the default value of True # noqa: E501 low_power_usb (bool): If enabled, the virtual drives appear on the boot selection menu after mapping the image and rebooting the host.. [optional] if omitted the server will use the default value of True # noqa: E501 mappings ([VmediaMapping], none_type): [optional] # noqa: E501 organization (OrganizationOrganizationRelationship): [optional] # noqa: E501 diff --git a/intersight/model/vmedia_policy_list.py b/intersight/model/vmedia_policy_list.py index f86807db4d..2bd332a619 100644 --- a/intersight/model/vmedia_policy_list.py +++ b/intersight/model/vmedia_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/vmedia_policy_list_all_of.py b/intersight/model/vmedia_policy_list_all_of.py index 05fb003d87..c90b9cf00b 100644 --- a/intersight/model/vmedia_policy_list_all_of.py +++ b/intersight/model/vmedia_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/vmedia_policy_response.py b/intersight/model/vmedia_policy_response.py index ed65e117c8..f2d80ae344 100644 --- a/intersight/model/vmedia_policy_response.py +++ b/intersight/model/vmedia_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/vmrc_console.py b/intersight/model/vmrc_console.py index 14012a0405..06b46ed07a 100644 --- a/intersight/model/vmrc_console.py +++ b/intersight/model/vmrc_console.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vmrc_console_all_of.py b/intersight/model/vmrc_console_all_of.py index f860cd0d23..2f6d2c698c 100644 --- a/intersight/model/vmrc_console_all_of.py +++ b/intersight/model/vmrc_console_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vmrc_console_list.py b/intersight/model/vmrc_console_list.py index 62df76dd7e..56a3132fb5 100644 --- a/intersight/model/vmrc_console_list.py +++ b/intersight/model/vmrc_console_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/vmrc_console_list_all_of.py b/intersight/model/vmrc_console_list_all_of.py index c66e8d3416..9c0bfa4f35 100644 --- a/intersight/model/vmrc_console_list_all_of.py +++ b/intersight/model/vmrc_console_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/vmrc_console_response.py b/intersight/model/vmrc_console_response.py index d96eeb4245..8ed273da13 100644 --- a/intersight/model/vmrc_console_response.py +++ b/intersight/model/vmrc_console_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/vnic_arfs_settings.py b/intersight/model/vnic_arfs_settings.py index 1909761dad..2d3cd1c976 100644 --- a/intersight/model/vnic_arfs_settings.py +++ b/intersight/model/vnic_arfs_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/vnic_arfs_settings_all_of.py b/intersight/model/vnic_arfs_settings_all_of.py index 750d93d78e..56ef216694 100644 --- a/intersight/model/vnic_arfs_settings_all_of.py +++ b/intersight/model/vnic_arfs_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/vnic_cdn.py b/intersight/model/vnic_cdn.py index 3909cf9c14..fca1769cf8 100644 --- a/intersight/model/vnic_cdn.py +++ b/intersight/model/vnic_cdn.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vnic_cdn_all_of.py b/intersight/model/vnic_cdn_all_of.py index c44866a22e..0efe914539 100644 --- a/intersight/model/vnic_cdn_all_of.py +++ b/intersight/model/vnic_cdn_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vnic_completion_queue_settings.py b/intersight/model/vnic_completion_queue_settings.py index a55d371d2f..e396e97b02 100644 --- a/intersight/model/vnic_completion_queue_settings.py +++ b/intersight/model/vnic_completion_queue_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/vnic_completion_queue_settings_all_of.py b/intersight/model/vnic_completion_queue_settings_all_of.py index 8015a87fc9..b33a2348ce 100644 --- a/intersight/model/vnic_completion_queue_settings_all_of.py +++ b/intersight/model/vnic_completion_queue_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/vnic_eth_adapter_policy.py b/intersight/model/vnic_eth_adapter_policy.py index 9765d9e884..0368ef9bb7 100644 --- a/intersight/model/vnic_eth_adapter_policy.py +++ b/intersight/model/vnic_eth_adapter_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/vnic_eth_adapter_policy_all_of.py b/intersight/model/vnic_eth_adapter_policy_all_of.py index adc470b4ab..70aeecba92 100644 --- a/intersight/model/vnic_eth_adapter_policy_all_of.py +++ b/intersight/model/vnic_eth_adapter_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/vnic_eth_adapter_policy_list.py b/intersight/model/vnic_eth_adapter_policy_list.py index 193ce513f8..14d71bc3a9 100644 --- a/intersight/model/vnic_eth_adapter_policy_list.py +++ b/intersight/model/vnic_eth_adapter_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/vnic_eth_adapter_policy_list_all_of.py b/intersight/model/vnic_eth_adapter_policy_list_all_of.py index 06c20f02be..9388627c3c 100644 --- a/intersight/model/vnic_eth_adapter_policy_list_all_of.py +++ b/intersight/model/vnic_eth_adapter_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/vnic_eth_adapter_policy_relationship.py b/intersight/model/vnic_eth_adapter_policy_relationship.py index a1db977d05..2f98bd26b0 100644 --- a/intersight/model/vnic_eth_adapter_policy_relationship.py +++ b/intersight/model/vnic_eth_adapter_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 """ @@ -94,6 +94,8 @@ class VnicEthAdapterPolicyRelationship(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 VnicEthAdapterPolicyRelationship(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 VnicEthAdapterPolicyRelationship(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 VnicEthAdapterPolicyRelationship(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 VnicEthAdapterPolicyRelationship(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 VnicEthAdapterPolicyRelationship(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 VnicEthAdapterPolicyRelationship(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 VnicEthAdapterPolicyRelationship(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 VnicEthAdapterPolicyRelationship(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 VnicEthAdapterPolicyRelationship(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/vnic_eth_adapter_policy_response.py b/intersight/model/vnic_eth_adapter_policy_response.py index f2b870d85f..2abeb558e2 100644 --- a/intersight/model/vnic_eth_adapter_policy_response.py +++ b/intersight/model/vnic_eth_adapter_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/vnic_eth_if.py b/intersight/model/vnic_eth_if.py index 344dbf0fdd..850342a5f7 100644 --- a/intersight/model/vnic_eth_if.py +++ b/intersight/model/vnic_eth_if.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vnic_eth_if_all_of.py b/intersight/model/vnic_eth_if_all_of.py index b7881134c1..d5627cff6f 100644 --- a/intersight/model/vnic_eth_if_all_of.py +++ b/intersight/model/vnic_eth_if_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vnic_eth_if_list.py b/intersight/model/vnic_eth_if_list.py index fff02a42c7..c1ece79780 100644 --- a/intersight/model/vnic_eth_if_list.py +++ b/intersight/model/vnic_eth_if_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/vnic_eth_if_list_all_of.py b/intersight/model/vnic_eth_if_list_all_of.py index 827b7a71db..77581ba665 100644 --- a/intersight/model/vnic_eth_if_list_all_of.py +++ b/intersight/model/vnic_eth_if_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/vnic_eth_if_relationship.py b/intersight/model/vnic_eth_if_relationship.py index 5d97b99a8c..95fdfd653f 100644 --- a/intersight/model/vnic_eth_if_relationship.py +++ b/intersight/model/vnic_eth_if_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 VnicEthIfRelationship(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 VnicEthIfRelationship(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 VnicEthIfRelationship(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 VnicEthIfRelationship(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 VnicEthIfRelationship(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 VnicEthIfRelationship(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 VnicEthIfRelationship(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 VnicEthIfRelationship(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 VnicEthIfRelationship(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 VnicEthIfRelationship(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/vnic_eth_if_response.py b/intersight/model/vnic_eth_if_response.py index 61e228df64..75ec9f6854 100644 --- a/intersight/model/vnic_eth_if_response.py +++ b/intersight/model/vnic_eth_if_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/vnic_eth_interrupt_settings.py b/intersight/model/vnic_eth_interrupt_settings.py index 53035a61f2..eabd547d28 100644 --- a/intersight/model/vnic_eth_interrupt_settings.py +++ b/intersight/model/vnic_eth_interrupt_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/vnic_eth_interrupt_settings_all_of.py b/intersight/model/vnic_eth_interrupt_settings_all_of.py index f6fe962d58..3bff0d9103 100644 --- a/intersight/model/vnic_eth_interrupt_settings_all_of.py +++ b/intersight/model/vnic_eth_interrupt_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/vnic_eth_network_policy.py b/intersight/model/vnic_eth_network_policy.py index 211fb28a1d..bee11ca9aa 100644 --- a/intersight/model/vnic_eth_network_policy.py +++ b/intersight/model/vnic_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/vnic_eth_network_policy_all_of.py b/intersight/model/vnic_eth_network_policy_all_of.py index e153569315..d09a6f51ec 100644 --- a/intersight/model/vnic_eth_network_policy_all_of.py +++ b/intersight/model/vnic_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/vnic_eth_network_policy_list.py b/intersight/model/vnic_eth_network_policy_list.py index 0a7cce113c..d3f9048274 100644 --- a/intersight/model/vnic_eth_network_policy_list.py +++ b/intersight/model/vnic_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/vnic_eth_network_policy_list_all_of.py b/intersight/model/vnic_eth_network_policy_list_all_of.py index 9d9f20710d..ec3f6aafdb 100644 --- a/intersight/model/vnic_eth_network_policy_list_all_of.py +++ b/intersight/model/vnic_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/vnic_eth_network_policy_relationship.py b/intersight/model/vnic_eth_network_policy_relationship.py index 6bcb01e2d4..1155505c3f 100644 --- a/intersight/model/vnic_eth_network_policy_relationship.py +++ b/intersight/model/vnic_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 """ @@ -80,6 +80,8 @@ class VnicEthNetworkPolicyRelationship(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 VnicEthNetworkPolicyRelationship(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 VnicEthNetworkPolicyRelationship(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 VnicEthNetworkPolicyRelationship(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 VnicEthNetworkPolicyRelationship(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 VnicEthNetworkPolicyRelationship(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 VnicEthNetworkPolicyRelationship(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 VnicEthNetworkPolicyRelationship(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 VnicEthNetworkPolicyRelationship(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 VnicEthNetworkPolicyRelationship(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/vnic_eth_network_policy_response.py b/intersight/model/vnic_eth_network_policy_response.py index a3aa275b0a..8e9fed055e 100644 --- a/intersight/model/vnic_eth_network_policy_response.py +++ b/intersight/model/vnic_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/vnic_eth_qos_policy.py b/intersight/model/vnic_eth_qos_policy.py index b6305fb6c5..942669937d 100644 --- a/intersight/model/vnic_eth_qos_policy.py +++ b/intersight/model/vnic_eth_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 """ @@ -88,7 +88,7 @@ class VnicEthQosPolicy(ModelComposed): validations = { ('burst',): { 'inclusive_maximum': 1000000, - 'inclusive_minimum': 1024, + 'inclusive_minimum': 1, }, ('cos',): { 'inclusive_maximum': 6, @@ -250,7 +250,7 @@ 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,) - burst (int): The burst traffic, in bytes, allowed on the vNIC.. [optional] if omitted the server will use the default value of 1024 # noqa: E501 + burst (int): The burst traffic, in bytes, allowed on the vNIC.. [optional] if omitted the server will use the default value of 10240 # noqa: E501 cos (int): Class of Service to be associated to the traffic on the virtual interface.. [optional] if omitted the server will use the default value of 0 # noqa: E501 mtu (int): The Maximum Transmission Unit (MTU) or packet size that the virtual interface accepts.. [optional] if omitted the server will use the default value of 1500 # noqa: E501 priority (str): The priortity matching the System QoS specified in the fabric profile. * `Best Effort` - QoS Priority for Best-effort traffic. * `FC` - QoS Priority for FC traffic. * `Platinum` - QoS Priority for Platinum traffic. * `Gold` - QoS Priority for Gold traffic. * `Silver` - QoS Priority for Silver traffic. * `Bronze` - QoS Priority for Bronze traffic.. [optional] if omitted the server will use the default value of "Best Effort" # noqa: E501 diff --git a/intersight/model/vnic_eth_qos_policy_all_of.py b/intersight/model/vnic_eth_qos_policy_all_of.py index 1bc9931c26..ac4ea50fa7 100644 --- a/intersight/model/vnic_eth_qos_policy_all_of.py +++ b/intersight/model/vnic_eth_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 """ @@ -76,7 +76,7 @@ class VnicEthQosPolicyAllOf(ModelNormal): validations = { ('burst',): { 'inclusive_maximum': 1000000, - 'inclusive_minimum': 1024, + 'inclusive_minimum': 1, }, ('cos',): { 'inclusive_maximum': 6, @@ -186,7 +186,7 @@ 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,) - burst (int): The burst traffic, in bytes, allowed on the vNIC.. [optional] if omitted the server will use the default value of 1024 # noqa: E501 + burst (int): The burst traffic, in bytes, allowed on the vNIC.. [optional] if omitted the server will use the default value of 10240 # noqa: E501 cos (int): Class of Service to be associated to the traffic on the virtual interface.. [optional] if omitted the server will use the default value of 0 # noqa: E501 mtu (int): The Maximum Transmission Unit (MTU) or packet size that the virtual interface accepts.. [optional] if omitted the server will use the default value of 1500 # noqa: E501 priority (str): The priortity matching the System QoS specified in the fabric profile. * `Best Effort` - QoS Priority for Best-effort traffic. * `FC` - QoS Priority for FC traffic. * `Platinum` - QoS Priority for Platinum traffic. * `Gold` - QoS Priority for Gold traffic. * `Silver` - QoS Priority for Silver traffic. * `Bronze` - QoS Priority for Bronze traffic.. [optional] if omitted the server will use the default value of "Best Effort" # noqa: E501 diff --git a/intersight/model/vnic_eth_qos_policy_list.py b/intersight/model/vnic_eth_qos_policy_list.py index db7b8b0975..1955a9095d 100644 --- a/intersight/model/vnic_eth_qos_policy_list.py +++ b/intersight/model/vnic_eth_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/vnic_eth_qos_policy_list_all_of.py b/intersight/model/vnic_eth_qos_policy_list_all_of.py index 5819ef5309..71f832112c 100644 --- a/intersight/model/vnic_eth_qos_policy_list_all_of.py +++ b/intersight/model/vnic_eth_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/vnic_eth_qos_policy_relationship.py b/intersight/model/vnic_eth_qos_policy_relationship.py index 5c74de310b..8504ed79bc 100644 --- a/intersight/model/vnic_eth_qos_policy_relationship.py +++ b/intersight/model/vnic_eth_qos_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 VnicEthQosPolicyRelationship(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 VnicEthQosPolicyRelationship(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 VnicEthQosPolicyRelationship(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 VnicEthQosPolicyRelationship(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 VnicEthQosPolicyRelationship(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 VnicEthQosPolicyRelationship(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 VnicEthQosPolicyRelationship(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 VnicEthQosPolicyRelationship(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 VnicEthQosPolicyRelationship(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 VnicEthQosPolicyRelationship(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", }, } @@ -842,7 +855,7 @@ class VnicEthQosPolicyRelationship(ModelComposed): }, ('burst',): { 'inclusive_maximum': 1000000, - 'inclusive_minimum': 1024, + 'inclusive_minimum': 1, }, ('cos',): { 'inclusive_maximum': 6, @@ -1016,7 +1029,7 @@ def __init__(self, *args, **kwargs): # 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 - burst (int): The burst traffic, in bytes, allowed on the vNIC.. [optional] if omitted the server will use the default value of 1024 # noqa: E501 + burst (int): The burst traffic, in bytes, allowed on the vNIC.. [optional] if omitted the server will use the default value of 10240 # noqa: E501 cos (int): Class of Service to be associated to the traffic on the virtual interface.. [optional] if omitted the server will use the default value of 0 # noqa: E501 mtu (int): The Maximum Transmission Unit (MTU) or packet size that the virtual interface accepts.. [optional] if omitted the server will use the default value of 1500 # noqa: E501 priority (str): The priortity matching the System QoS specified in the fabric profile. * `Best Effort` - QoS Priority for Best-effort traffic. * `FC` - QoS Priority for FC traffic. * `Platinum` - QoS Priority for Platinum traffic. * `Gold` - QoS Priority for Gold traffic. * `Silver` - QoS Priority for Silver traffic. * `Bronze` - QoS Priority for Bronze traffic.. [optional] if omitted the server will use the default value of "Best Effort" # noqa: E501 diff --git a/intersight/model/vnic_eth_qos_policy_response.py b/intersight/model/vnic_eth_qos_policy_response.py index 25ff4379c2..ebf40d0c9f 100644 --- a/intersight/model/vnic_eth_qos_policy_response.py +++ b/intersight/model/vnic_eth_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/vnic_eth_rx_queue_settings.py b/intersight/model/vnic_eth_rx_queue_settings.py index b9e1e1f4ea..b18369267c 100644 --- a/intersight/model/vnic_eth_rx_queue_settings.py +++ b/intersight/model/vnic_eth_rx_queue_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/vnic_eth_rx_queue_settings_all_of.py b/intersight/model/vnic_eth_rx_queue_settings_all_of.py index 47ff9db385..8998d18557 100644 --- a/intersight/model/vnic_eth_rx_queue_settings_all_of.py +++ b/intersight/model/vnic_eth_rx_queue_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/vnic_eth_tx_queue_settings.py b/intersight/model/vnic_eth_tx_queue_settings.py index 8482927d46..76bfddfb19 100644 --- a/intersight/model/vnic_eth_tx_queue_settings.py +++ b/intersight/model/vnic_eth_tx_queue_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/vnic_eth_tx_queue_settings_all_of.py b/intersight/model/vnic_eth_tx_queue_settings_all_of.py index a3f21d1470..c0ddd9dc5b 100644 --- a/intersight/model/vnic_eth_tx_queue_settings_all_of.py +++ b/intersight/model/vnic_eth_tx_queue_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/vnic_fc_adapter_policy.py b/intersight/model/vnic_fc_adapter_policy.py index 3a126d0676..b254fd32b1 100644 --- a/intersight/model/vnic_fc_adapter_policy.py +++ b/intersight/model/vnic_fc_adapter_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/vnic_fc_adapter_policy_all_of.py b/intersight/model/vnic_fc_adapter_policy_all_of.py index cd30d2996c..e51bc4fd79 100644 --- a/intersight/model/vnic_fc_adapter_policy_all_of.py +++ b/intersight/model/vnic_fc_adapter_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/vnic_fc_adapter_policy_list.py b/intersight/model/vnic_fc_adapter_policy_list.py index 308fb7d1f6..c81b82ff88 100644 --- a/intersight/model/vnic_fc_adapter_policy_list.py +++ b/intersight/model/vnic_fc_adapter_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/vnic_fc_adapter_policy_list_all_of.py b/intersight/model/vnic_fc_adapter_policy_list_all_of.py index 3a60e4df75..4e6fbd1898 100644 --- a/intersight/model/vnic_fc_adapter_policy_list_all_of.py +++ b/intersight/model/vnic_fc_adapter_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/vnic_fc_adapter_policy_relationship.py b/intersight/model/vnic_fc_adapter_policy_relationship.py index 945dc0ec5c..3b6c14ea29 100644 --- a/intersight/model/vnic_fc_adapter_policy_relationship.py +++ b/intersight/model/vnic_fc_adapter_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 VnicFcAdapterPolicyRelationship(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 VnicFcAdapterPolicyRelationship(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 VnicFcAdapterPolicyRelationship(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 VnicFcAdapterPolicyRelationship(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 VnicFcAdapterPolicyRelationship(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 VnicFcAdapterPolicyRelationship(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 VnicFcAdapterPolicyRelationship(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 VnicFcAdapterPolicyRelationship(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 VnicFcAdapterPolicyRelationship(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 VnicFcAdapterPolicyRelationship(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/vnic_fc_adapter_policy_response.py b/intersight/model/vnic_fc_adapter_policy_response.py index 8e94f1e1db..d64ed708d6 100644 --- a/intersight/model/vnic_fc_adapter_policy_response.py +++ b/intersight/model/vnic_fc_adapter_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/vnic_fc_error_recovery_settings.py b/intersight/model/vnic_fc_error_recovery_settings.py index c31fc54de8..2b4d51c81e 100644 --- a/intersight/model/vnic_fc_error_recovery_settings.py +++ b/intersight/model/vnic_fc_error_recovery_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/vnic_fc_error_recovery_settings_all_of.py b/intersight/model/vnic_fc_error_recovery_settings_all_of.py index 6d6729e52b..17e8614d90 100644 --- a/intersight/model/vnic_fc_error_recovery_settings_all_of.py +++ b/intersight/model/vnic_fc_error_recovery_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/vnic_fc_if.py b/intersight/model/vnic_fc_if.py index f7aefbdd43..dbe31e9b7c 100644 --- a/intersight/model/vnic_fc_if.py +++ b/intersight/model/vnic_fc_if.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vnic_fc_if_all_of.py b/intersight/model/vnic_fc_if_all_of.py index 4ccd9b1776..9b5b180e95 100644 --- a/intersight/model/vnic_fc_if_all_of.py +++ b/intersight/model/vnic_fc_if_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vnic_fc_if_list.py b/intersight/model/vnic_fc_if_list.py index 9bef597cc4..197f9ce768 100644 --- a/intersight/model/vnic_fc_if_list.py +++ b/intersight/model/vnic_fc_if_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/vnic_fc_if_list_all_of.py b/intersight/model/vnic_fc_if_list_all_of.py index f64b08914e..09706ff1ec 100644 --- a/intersight/model/vnic_fc_if_list_all_of.py +++ b/intersight/model/vnic_fc_if_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/vnic_fc_if_relationship.py b/intersight/model/vnic_fc_if_relationship.py index 0fec219bac..4c1880caaa 100644 --- a/intersight/model/vnic_fc_if_relationship.py +++ b/intersight/model/vnic_fc_if_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 VnicFcIfRelationship(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 VnicFcIfRelationship(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 VnicFcIfRelationship(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 VnicFcIfRelationship(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 VnicFcIfRelationship(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 VnicFcIfRelationship(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 VnicFcIfRelationship(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 VnicFcIfRelationship(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 VnicFcIfRelationship(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 VnicFcIfRelationship(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/vnic_fc_if_response.py b/intersight/model/vnic_fc_if_response.py index 3c6e463fff..263f2b56df 100644 --- a/intersight/model/vnic_fc_if_response.py +++ b/intersight/model/vnic_fc_if_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/vnic_fc_interrupt_settings.py b/intersight/model/vnic_fc_interrupt_settings.py index d94879a370..e9cc9c9567 100644 --- a/intersight/model/vnic_fc_interrupt_settings.py +++ b/intersight/model/vnic_fc_interrupt_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/vnic_fc_interrupt_settings_all_of.py b/intersight/model/vnic_fc_interrupt_settings_all_of.py index 75e6aefb31..db30137dac 100644 --- a/intersight/model/vnic_fc_interrupt_settings_all_of.py +++ b/intersight/model/vnic_fc_interrupt_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/vnic_fc_network_policy.py b/intersight/model/vnic_fc_network_policy.py index 5bc202454e..a519d839b4 100644 --- a/intersight/model/vnic_fc_network_policy.py +++ b/intersight/model/vnic_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/vnic_fc_network_policy_all_of.py b/intersight/model/vnic_fc_network_policy_all_of.py index d61548536a..66a41144b7 100644 --- a/intersight/model/vnic_fc_network_policy_all_of.py +++ b/intersight/model/vnic_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/vnic_fc_network_policy_list.py b/intersight/model/vnic_fc_network_policy_list.py index 3747f5e8ed..535df794bd 100644 --- a/intersight/model/vnic_fc_network_policy_list.py +++ b/intersight/model/vnic_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/vnic_fc_network_policy_list_all_of.py b/intersight/model/vnic_fc_network_policy_list_all_of.py index a8afe19110..25b247fef3 100644 --- a/intersight/model/vnic_fc_network_policy_list_all_of.py +++ b/intersight/model/vnic_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/vnic_fc_network_policy_relationship.py b/intersight/model/vnic_fc_network_policy_relationship.py index e5e1618dff..34b02c2c8e 100644 --- a/intersight/model/vnic_fc_network_policy_relationship.py +++ b/intersight/model/vnic_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 VnicFcNetworkPolicyRelationship(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 VnicFcNetworkPolicyRelationship(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 VnicFcNetworkPolicyRelationship(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 VnicFcNetworkPolicyRelationship(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 VnicFcNetworkPolicyRelationship(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 VnicFcNetworkPolicyRelationship(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 VnicFcNetworkPolicyRelationship(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 VnicFcNetworkPolicyRelationship(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 VnicFcNetworkPolicyRelationship(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 VnicFcNetworkPolicyRelationship(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/vnic_fc_network_policy_response.py b/intersight/model/vnic_fc_network_policy_response.py index 2aebdcb9e1..02f4f56709 100644 --- a/intersight/model/vnic_fc_network_policy_response.py +++ b/intersight/model/vnic_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/vnic_fc_qos_policy.py b/intersight/model/vnic_fc_qos_policy.py index 95c30ae502..3eb9da5f59 100644 --- a/intersight/model/vnic_fc_qos_policy.py +++ b/intersight/model/vnic_fc_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 """ @@ -88,7 +88,7 @@ class VnicFcQosPolicy(ModelComposed): validations = { ('burst',): { 'inclusive_maximum': 1000000, - 'inclusive_minimum': 1024, + 'inclusive_minimum': 1, }, ('cos',): { 'inclusive_maximum': 6, @@ -248,7 +248,7 @@ 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,) - burst (int): The burst traffic, in bytes, allowed on the vNIC.. [optional] if omitted the server will use the default value of 1024 # noqa: E501 + burst (int): The burst traffic, in bytes, allowed on the vHBA.. [optional] if omitted the server will use the default value of 10240 # noqa: E501 cos (int): Class of Service to be associated to the traffic on the virtual interface.. [optional] if omitted the server will use the default value of 3 # noqa: E501 max_data_field_size (int): The maximum size of the Fibre Channel frame payload bytes that the virtual interface supports.. [optional] if omitted the server will use the default value of 2112 # noqa: E501 priority (str): The priortity matching the System QoS specified in the fabric profile. * `Best Effort` - QoS Priority for Best-effort traffic. * `FC` - QoS Priority for FC traffic. * `Platinum` - QoS Priority for Platinum traffic. * `Gold` - QoS Priority for Gold traffic. * `Silver` - QoS Priority for Silver traffic. * `Bronze` - QoS Priority for Bronze traffic.. [optional] if omitted the server will use the default value of "Best Effort" # noqa: E501 diff --git a/intersight/model/vnic_fc_qos_policy_all_of.py b/intersight/model/vnic_fc_qos_policy_all_of.py index e09170b1ed..2814a3d51f 100644 --- a/intersight/model/vnic_fc_qos_policy_all_of.py +++ b/intersight/model/vnic_fc_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 """ @@ -76,7 +76,7 @@ class VnicFcQosPolicyAllOf(ModelNormal): validations = { ('burst',): { 'inclusive_maximum': 1000000, - 'inclusive_minimum': 1024, + 'inclusive_minimum': 1, }, ('cos',): { 'inclusive_maximum': 6, @@ -184,7 +184,7 @@ 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,) - burst (int): The burst traffic, in bytes, allowed on the vNIC.. [optional] if omitted the server will use the default value of 1024 # noqa: E501 + burst (int): The burst traffic, in bytes, allowed on the vHBA.. [optional] if omitted the server will use the default value of 10240 # noqa: E501 cos (int): Class of Service to be associated to the traffic on the virtual interface.. [optional] if omitted the server will use the default value of 3 # noqa: E501 max_data_field_size (int): The maximum size of the Fibre Channel frame payload bytes that the virtual interface supports.. [optional] if omitted the server will use the default value of 2112 # noqa: E501 priority (str): The priortity matching the System QoS specified in the fabric profile. * `Best Effort` - QoS Priority for Best-effort traffic. * `FC` - QoS Priority for FC traffic. * `Platinum` - QoS Priority for Platinum traffic. * `Gold` - QoS Priority for Gold traffic. * `Silver` - QoS Priority for Silver traffic. * `Bronze` - QoS Priority for Bronze traffic.. [optional] if omitted the server will use the default value of "Best Effort" # noqa: E501 diff --git a/intersight/model/vnic_fc_qos_policy_list.py b/intersight/model/vnic_fc_qos_policy_list.py index 44aeeb7814..fc71a38757 100644 --- a/intersight/model/vnic_fc_qos_policy_list.py +++ b/intersight/model/vnic_fc_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/vnic_fc_qos_policy_list_all_of.py b/intersight/model/vnic_fc_qos_policy_list_all_of.py index 2573f9fbed..1c0e6d9342 100644 --- a/intersight/model/vnic_fc_qos_policy_list_all_of.py +++ b/intersight/model/vnic_fc_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/vnic_fc_qos_policy_relationship.py b/intersight/model/vnic_fc_qos_policy_relationship.py index 5e074c094f..fef50b5f14 100644 --- a/intersight/model/vnic_fc_qos_policy_relationship.py +++ b/intersight/model/vnic_fc_qos_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 VnicFcQosPolicyRelationship(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 VnicFcQosPolicyRelationship(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 VnicFcQosPolicyRelationship(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 VnicFcQosPolicyRelationship(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 VnicFcQosPolicyRelationship(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 VnicFcQosPolicyRelationship(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 VnicFcQosPolicyRelationship(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 VnicFcQosPolicyRelationship(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 VnicFcQosPolicyRelationship(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 VnicFcQosPolicyRelationship(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", }, } @@ -842,7 +855,7 @@ class VnicFcQosPolicyRelationship(ModelComposed): }, ('burst',): { 'inclusive_maximum': 1000000, - 'inclusive_minimum': 1024, + 'inclusive_minimum': 1, }, ('cos',): { 'inclusive_maximum': 6, @@ -1014,7 +1027,7 @@ def __init__(self, *args, **kwargs): # 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 - burst (int): The burst traffic, in bytes, allowed on the vNIC.. [optional] if omitted the server will use the default value of 1024 # noqa: E501 + burst (int): The burst traffic, in bytes, allowed on the vHBA.. [optional] if omitted the server will use the default value of 10240 # noqa: E501 cos (int): Class of Service to be associated to the traffic on the virtual interface.. [optional] if omitted the server will use the default value of 3 # noqa: E501 max_data_field_size (int): The maximum size of the Fibre Channel frame payload bytes that the virtual interface supports.. [optional] if omitted the server will use the default value of 2112 # noqa: E501 priority (str): The priortity matching the System QoS specified in the fabric profile. * `Best Effort` - QoS Priority for Best-effort traffic. * `FC` - QoS Priority for FC traffic. * `Platinum` - QoS Priority for Platinum traffic. * `Gold` - QoS Priority for Gold traffic. * `Silver` - QoS Priority for Silver traffic. * `Bronze` - QoS Priority for Bronze traffic.. [optional] if omitted the server will use the default value of "Best Effort" # noqa: E501 diff --git a/intersight/model/vnic_fc_qos_policy_response.py b/intersight/model/vnic_fc_qos_policy_response.py index 4449bc32e0..72d73b750f 100644 --- a/intersight/model/vnic_fc_qos_policy_response.py +++ b/intersight/model/vnic_fc_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/vnic_fc_queue_settings.py b/intersight/model/vnic_fc_queue_settings.py index eeecacf53b..a7cb3e4ad3 100644 --- a/intersight/model/vnic_fc_queue_settings.py +++ b/intersight/model/vnic_fc_queue_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 """ @@ -73,7 +73,6 @@ class VnicFcQueueSettings(ModelComposed): 'inclusive_minimum': 1, }, ('ring_size',): { - 'inclusive_maximum': 2048, 'inclusive_minimum': 64, }, } diff --git a/intersight/model/vnic_fc_queue_settings_all_of.py b/intersight/model/vnic_fc_queue_settings_all_of.py index 26ba64d262..a33c0edec4 100644 --- a/intersight/model/vnic_fc_queue_settings_all_of.py +++ b/intersight/model/vnic_fc_queue_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 """ @@ -67,7 +67,6 @@ class VnicFcQueueSettingsAllOf(ModelNormal): 'inclusive_minimum': 1, }, ('ring_size',): { - 'inclusive_maximum': 2048, 'inclusive_minimum': 64, }, } diff --git a/intersight/model/vnic_flogi_settings.py b/intersight/model/vnic_flogi_settings.py index 03862c6186..5477053138 100644 --- a/intersight/model/vnic_flogi_settings.py +++ b/intersight/model/vnic_flogi_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 """ @@ -172,7 +172,7 @@ 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,) - retries (int): The number of times that the system tries to log in to the fabric after the first failure.. [optional] if omitted the server will use the default value of 8 # noqa: E501 + retries (int): The number of times that the system tries to log in to the fabric after the first failure. Allowed range is 0-4294967295.. [optional] if omitted the server will use the default value of 8 # noqa: E501 timeout (int): The number of milliseconds that the system waits before it tries to log in again.. [optional] if omitted the server will use the default value of 4000 # noqa: E501 """ diff --git a/intersight/model/vnic_flogi_settings_all_of.py b/intersight/model/vnic_flogi_settings_all_of.py index 16802305e7..5edaf5d439 100644 --- a/intersight/model/vnic_flogi_settings_all_of.py +++ b/intersight/model/vnic_flogi_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 """ @@ -154,7 +154,7 @@ 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,) - retries (int): The number of times that the system tries to log in to the fabric after the first failure.. [optional] if omitted the server will use the default value of 8 # noqa: E501 + retries (int): The number of times that the system tries to log in to the fabric after the first failure. Allowed range is 0-4294967295.. [optional] if omitted the server will use the default value of 8 # noqa: E501 timeout (int): The number of milliseconds that the system waits before it tries to log in again.. [optional] if omitted the server will use the default value of 4000 # noqa: E501 """ diff --git a/intersight/model/vnic_iscsi_adapter_policy.py b/intersight/model/vnic_iscsi_adapter_policy.py index f079edf8bc..69b5497bfb 100644 --- a/intersight/model/vnic_iscsi_adapter_policy.py +++ b/intersight/model/vnic_iscsi_adapter_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/vnic_iscsi_adapter_policy_all_of.py b/intersight/model/vnic_iscsi_adapter_policy_all_of.py index cc0a763e26..294fdd5403 100644 --- a/intersight/model/vnic_iscsi_adapter_policy_all_of.py +++ b/intersight/model/vnic_iscsi_adapter_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/vnic_iscsi_adapter_policy_list.py b/intersight/model/vnic_iscsi_adapter_policy_list.py index 316f0e4efc..84ded444fa 100644 --- a/intersight/model/vnic_iscsi_adapter_policy_list.py +++ b/intersight/model/vnic_iscsi_adapter_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/vnic_iscsi_adapter_policy_list_all_of.py b/intersight/model/vnic_iscsi_adapter_policy_list_all_of.py index 6ec9c29d20..de9ff4c578 100644 --- a/intersight/model/vnic_iscsi_adapter_policy_list_all_of.py +++ b/intersight/model/vnic_iscsi_adapter_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/vnic_iscsi_adapter_policy_relationship.py b/intersight/model/vnic_iscsi_adapter_policy_relationship.py index cd9c430429..38eefb542b 100644 --- a/intersight/model/vnic_iscsi_adapter_policy_relationship.py +++ b/intersight/model/vnic_iscsi_adapter_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 VnicIscsiAdapterPolicyRelationship(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 VnicIscsiAdapterPolicyRelationship(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 VnicIscsiAdapterPolicyRelationship(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 VnicIscsiAdapterPolicyRelationship(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 VnicIscsiAdapterPolicyRelationship(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 VnicIscsiAdapterPolicyRelationship(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 VnicIscsiAdapterPolicyRelationship(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 VnicIscsiAdapterPolicyRelationship(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 VnicIscsiAdapterPolicyRelationship(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 VnicIscsiAdapterPolicyRelationship(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/vnic_iscsi_adapter_policy_response.py b/intersight/model/vnic_iscsi_adapter_policy_response.py index a454a09c4b..e4634e5cf0 100644 --- a/intersight/model/vnic_iscsi_adapter_policy_response.py +++ b/intersight/model/vnic_iscsi_adapter_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/vnic_iscsi_auth_profile.py b/intersight/model/vnic_iscsi_auth_profile.py index f3adcafa7d..90ab04fc60 100644 --- a/intersight/model/vnic_iscsi_auth_profile.py +++ b/intersight/model/vnic_iscsi_auth_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/vnic_iscsi_auth_profile_all_of.py b/intersight/model/vnic_iscsi_auth_profile_all_of.py index 5820c0a98a..ee2b012df3 100644 --- a/intersight/model/vnic_iscsi_auth_profile_all_of.py +++ b/intersight/model/vnic_iscsi_auth_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/vnic_iscsi_boot_policy.py b/intersight/model/vnic_iscsi_boot_policy.py index c95de0d63e..9fdb03c52e 100644 --- a/intersight/model/vnic_iscsi_boot_policy.py +++ b/intersight/model/vnic_iscsi_boot_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/vnic_iscsi_boot_policy_all_of.py b/intersight/model/vnic_iscsi_boot_policy_all_of.py index 776aa727ab..ef185d6ece 100644 --- a/intersight/model/vnic_iscsi_boot_policy_all_of.py +++ b/intersight/model/vnic_iscsi_boot_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/vnic_iscsi_boot_policy_list.py b/intersight/model/vnic_iscsi_boot_policy_list.py index 79af43e234..454767cf77 100644 --- a/intersight/model/vnic_iscsi_boot_policy_list.py +++ b/intersight/model/vnic_iscsi_boot_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/vnic_iscsi_boot_policy_list_all_of.py b/intersight/model/vnic_iscsi_boot_policy_list_all_of.py index 404e08ff7e..6d1e072854 100644 --- a/intersight/model/vnic_iscsi_boot_policy_list_all_of.py +++ b/intersight/model/vnic_iscsi_boot_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/vnic_iscsi_boot_policy_relationship.py b/intersight/model/vnic_iscsi_boot_policy_relationship.py index 26a9bcfab1..5db77f2cac 100644 --- a/intersight/model/vnic_iscsi_boot_policy_relationship.py +++ b/intersight/model/vnic_iscsi_boot_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 """ @@ -93,6 +93,8 @@ class VnicIscsiBootPolicyRelationship(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 VnicIscsiBootPolicyRelationship(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 VnicIscsiBootPolicyRelationship(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 VnicIscsiBootPolicyRelationship(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 VnicIscsiBootPolicyRelationship(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 VnicIscsiBootPolicyRelationship(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 VnicIscsiBootPolicyRelationship(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 VnicIscsiBootPolicyRelationship(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 VnicIscsiBootPolicyRelationship(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 VnicIscsiBootPolicyRelationship(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/vnic_iscsi_boot_policy_response.py b/intersight/model/vnic_iscsi_boot_policy_response.py index dc2fc231f6..8d4ba6b7a9 100644 --- a/intersight/model/vnic_iscsi_boot_policy_response.py +++ b/intersight/model/vnic_iscsi_boot_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/vnic_iscsi_static_target_policy.py b/intersight/model/vnic_iscsi_static_target_policy.py index d2f4be99ef..59fc295f6c 100644 --- a/intersight/model/vnic_iscsi_static_target_policy.py +++ b/intersight/model/vnic_iscsi_static_target_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/vnic_iscsi_static_target_policy_all_of.py b/intersight/model/vnic_iscsi_static_target_policy_all_of.py index 0375b56976..a88ff55d1b 100644 --- a/intersight/model/vnic_iscsi_static_target_policy_all_of.py +++ b/intersight/model/vnic_iscsi_static_target_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/vnic_iscsi_static_target_policy_list.py b/intersight/model/vnic_iscsi_static_target_policy_list.py index deef863fc8..a5e7eab389 100644 --- a/intersight/model/vnic_iscsi_static_target_policy_list.py +++ b/intersight/model/vnic_iscsi_static_target_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/vnic_iscsi_static_target_policy_list_all_of.py b/intersight/model/vnic_iscsi_static_target_policy_list_all_of.py index 11b4654c46..4a66f3d420 100644 --- a/intersight/model/vnic_iscsi_static_target_policy_list_all_of.py +++ b/intersight/model/vnic_iscsi_static_target_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/vnic_iscsi_static_target_policy_relationship.py b/intersight/model/vnic_iscsi_static_target_policy_relationship.py index adad2a9c04..cbef614613 100644 --- a/intersight/model/vnic_iscsi_static_target_policy_relationship.py +++ b/intersight/model/vnic_iscsi_static_target_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 VnicIscsiStaticTargetPolicyRelationship(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 VnicIscsiStaticTargetPolicyRelationship(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 VnicIscsiStaticTargetPolicyRelationship(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 VnicIscsiStaticTargetPolicyRelationship(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 VnicIscsiStaticTargetPolicyRelationship(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 VnicIscsiStaticTargetPolicyRelationship(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 VnicIscsiStaticTargetPolicyRelationship(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 VnicIscsiStaticTargetPolicyRelationship(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 VnicIscsiStaticTargetPolicyRelationship(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 VnicIscsiStaticTargetPolicyRelationship(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/vnic_iscsi_static_target_policy_response.py b/intersight/model/vnic_iscsi_static_target_policy_response.py index 300a6faec9..706a84e2c2 100644 --- a/intersight/model/vnic_iscsi_static_target_policy_response.py +++ b/intersight/model/vnic_iscsi_static_target_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/vnic_lan_connectivity_policy.py b/intersight/model/vnic_lan_connectivity_policy.py index c195fd2d49..e1fd6611b1 100644 --- a/intersight/model/vnic_lan_connectivity_policy.py +++ b/intersight/model/vnic_lan_connectivity_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/vnic_lan_connectivity_policy_all_of.py b/intersight/model/vnic_lan_connectivity_policy_all_of.py index 59a4df0e5b..cc86927f7e 100644 --- a/intersight/model/vnic_lan_connectivity_policy_all_of.py +++ b/intersight/model/vnic_lan_connectivity_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/vnic_lan_connectivity_policy_list.py b/intersight/model/vnic_lan_connectivity_policy_list.py index c212aec4e8..515ce9984a 100644 --- a/intersight/model/vnic_lan_connectivity_policy_list.py +++ b/intersight/model/vnic_lan_connectivity_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/vnic_lan_connectivity_policy_list_all_of.py b/intersight/model/vnic_lan_connectivity_policy_list_all_of.py index 7f247c3d84..29c2dcff5e 100644 --- a/intersight/model/vnic_lan_connectivity_policy_list_all_of.py +++ b/intersight/model/vnic_lan_connectivity_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/vnic_lan_connectivity_policy_relationship.py b/intersight/model/vnic_lan_connectivity_policy_relationship.py index e472c632e8..f77b5ff9c7 100644 --- a/intersight/model/vnic_lan_connectivity_policy_relationship.py +++ b/intersight/model/vnic_lan_connectivity_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 """ @@ -93,6 +93,8 @@ class VnicLanConnectivityPolicyRelationship(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 VnicLanConnectivityPolicyRelationship(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 VnicLanConnectivityPolicyRelationship(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 VnicLanConnectivityPolicyRelationship(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 VnicLanConnectivityPolicyRelationship(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 VnicLanConnectivityPolicyRelationship(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 VnicLanConnectivityPolicyRelationship(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 VnicLanConnectivityPolicyRelationship(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 VnicLanConnectivityPolicyRelationship(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 VnicLanConnectivityPolicyRelationship(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/vnic_lan_connectivity_policy_response.py b/intersight/model/vnic_lan_connectivity_policy_response.py index f1d089fc13..7947bc3e8b 100644 --- a/intersight/model/vnic_lan_connectivity_policy_response.py +++ b/intersight/model/vnic_lan_connectivity_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/vnic_lcp_status.py b/intersight/model/vnic_lcp_status.py index 4089767112..7d93ec4698 100644 --- a/intersight/model/vnic_lcp_status.py +++ b/intersight/model/vnic_lcp_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/vnic_lcp_status_all_of.py b/intersight/model/vnic_lcp_status_all_of.py index 2c8cc53cc8..942214df95 100644 --- a/intersight/model/vnic_lcp_status_all_of.py +++ b/intersight/model/vnic_lcp_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/vnic_lcp_status_list.py b/intersight/model/vnic_lcp_status_list.py index 9501ad3969..8bd44be7a4 100644 --- a/intersight/model/vnic_lcp_status_list.py +++ b/intersight/model/vnic_lcp_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/vnic_lcp_status_list_all_of.py b/intersight/model/vnic_lcp_status_list_all_of.py index df1d4861e7..0cfbf4c401 100644 --- a/intersight/model/vnic_lcp_status_list_all_of.py +++ b/intersight/model/vnic_lcp_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/vnic_lcp_status_response.py b/intersight/model/vnic_lcp_status_response.py index 97ce330114..f81be32e75 100644 --- a/intersight/model/vnic_lcp_status_response.py +++ b/intersight/model/vnic_lcp_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/vnic_lun.py b/intersight/model/vnic_lun.py index bd02fd8b67..067a75f1e9 100644 --- a/intersight/model/vnic_lun.py +++ b/intersight/model/vnic_lun.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vnic_lun_all_of.py b/intersight/model/vnic_lun_all_of.py index 804e394655..63e801250d 100644 --- a/intersight/model/vnic_lun_all_of.py +++ b/intersight/model/vnic_lun_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vnic_nvgre_settings.py b/intersight/model/vnic_nvgre_settings.py index 9bc9a21b41..2302038807 100644 --- a/intersight/model/vnic_nvgre_settings.py +++ b/intersight/model/vnic_nvgre_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/vnic_nvgre_settings_all_of.py b/intersight/model/vnic_nvgre_settings_all_of.py index cd9086748e..d9ac6cd7f5 100644 --- a/intersight/model/vnic_nvgre_settings_all_of.py +++ b/intersight/model/vnic_nvgre_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/vnic_placement_settings.py b/intersight/model/vnic_placement_settings.py index 38b2c088c6..7a0a1b5b41 100644 --- a/intersight/model/vnic_placement_settings.py +++ b/intersight/model/vnic_placement_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/vnic_placement_settings_all_of.py b/intersight/model/vnic_placement_settings_all_of.py index 7fe5fdebd5..f57d6570d7 100644 --- a/intersight/model/vnic_placement_settings_all_of.py +++ b/intersight/model/vnic_placement_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/vnic_plogi_settings.py b/intersight/model/vnic_plogi_settings.py index b08f9ad9e9..2b04a8c143 100644 --- a/intersight/model/vnic_plogi_settings.py +++ b/intersight/model/vnic_plogi_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/vnic_plogi_settings_all_of.py b/intersight/model/vnic_plogi_settings_all_of.py index 2214762876..d1f9100be1 100644 --- a/intersight/model/vnic_plogi_settings_all_of.py +++ b/intersight/model/vnic_plogi_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/vnic_roce_settings.py b/intersight/model/vnic_roce_settings.py index 8c7634e45d..c703b5077e 100644 --- a/intersight/model/vnic_roce_settings.py +++ b/intersight/model/vnic_roce_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/vnic_roce_settings_all_of.py b/intersight/model/vnic_roce_settings_all_of.py index e4310c3448..5c1b110cd5 100644 --- a/intersight/model/vnic_roce_settings_all_of.py +++ b/intersight/model/vnic_roce_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/vnic_rss_hash_settings.py b/intersight/model/vnic_rss_hash_settings.py index 3c1e90fdf9..5b307f405f 100644 --- a/intersight/model/vnic_rss_hash_settings.py +++ b/intersight/model/vnic_rss_hash_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/vnic_rss_hash_settings_all_of.py b/intersight/model/vnic_rss_hash_settings_all_of.py index e33bd0e4f2..1e114fc63e 100644 --- a/intersight/model/vnic_rss_hash_settings_all_of.py +++ b/intersight/model/vnic_rss_hash_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/vnic_san_connectivity_policy.py b/intersight/model/vnic_san_connectivity_policy.py index 9ed84f196c..b4604f2886 100644 --- a/intersight/model/vnic_san_connectivity_policy.py +++ b/intersight/model/vnic_san_connectivity_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/vnic_san_connectivity_policy_all_of.py b/intersight/model/vnic_san_connectivity_policy_all_of.py index 2903be78f5..3e87eaef0c 100644 --- a/intersight/model/vnic_san_connectivity_policy_all_of.py +++ b/intersight/model/vnic_san_connectivity_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/vnic_san_connectivity_policy_list.py b/intersight/model/vnic_san_connectivity_policy_list.py index b5493f7e7f..b726ac1c39 100644 --- a/intersight/model/vnic_san_connectivity_policy_list.py +++ b/intersight/model/vnic_san_connectivity_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/vnic_san_connectivity_policy_list_all_of.py b/intersight/model/vnic_san_connectivity_policy_list_all_of.py index de4d6cc4fe..09fc77ad37 100644 --- a/intersight/model/vnic_san_connectivity_policy_list_all_of.py +++ b/intersight/model/vnic_san_connectivity_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/vnic_san_connectivity_policy_relationship.py b/intersight/model/vnic_san_connectivity_policy_relationship.py index 204dab9607..e60432d37e 100644 --- a/intersight/model/vnic_san_connectivity_policy_relationship.py +++ b/intersight/model/vnic_san_connectivity_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 """ @@ -92,6 +92,8 @@ class VnicSanConnectivityPolicyRelationship(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 VnicSanConnectivityPolicyRelationship(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 VnicSanConnectivityPolicyRelationship(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 VnicSanConnectivityPolicyRelationship(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 VnicSanConnectivityPolicyRelationship(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 VnicSanConnectivityPolicyRelationship(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 VnicSanConnectivityPolicyRelationship(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 VnicSanConnectivityPolicyRelationship(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 VnicSanConnectivityPolicyRelationship(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 VnicSanConnectivityPolicyRelationship(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/vnic_san_connectivity_policy_response.py b/intersight/model/vnic_san_connectivity_policy_response.py index dacd2fdc5c..fdc90308b9 100644 --- a/intersight/model/vnic_san_connectivity_policy_response.py +++ b/intersight/model/vnic_san_connectivity_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/vnic_scp_status.py b/intersight/model/vnic_scp_status.py index 858e3f666b..bd008c2f3f 100644 --- a/intersight/model/vnic_scp_status.py +++ b/intersight/model/vnic_scp_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/vnic_scp_status_all_of.py b/intersight/model/vnic_scp_status_all_of.py index ccc7769dff..d145c7cbb8 100644 --- a/intersight/model/vnic_scp_status_all_of.py +++ b/intersight/model/vnic_scp_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/vnic_scp_status_list.py b/intersight/model/vnic_scp_status_list.py index e0625f3295..21b8033c5c 100644 --- a/intersight/model/vnic_scp_status_list.py +++ b/intersight/model/vnic_scp_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/vnic_scp_status_list_all_of.py b/intersight/model/vnic_scp_status_list_all_of.py index fb1c5bd8c4..957a9cf17a 100644 --- a/intersight/model/vnic_scp_status_list_all_of.py +++ b/intersight/model/vnic_scp_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/vnic_scp_status_response.py b/intersight/model/vnic_scp_status_response.py index 29ced1c0c8..f11d7c0a55 100644 --- a/intersight/model/vnic_scp_status_response.py +++ b/intersight/model/vnic_scp_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/vnic_scsi_queue_settings.py b/intersight/model/vnic_scsi_queue_settings.py index f09c0db300..13dc6580f7 100644 --- a/intersight/model/vnic_scsi_queue_settings.py +++ b/intersight/model/vnic_scsi_queue_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/vnic_scsi_queue_settings_all_of.py b/intersight/model/vnic_scsi_queue_settings_all_of.py index 0da27f472c..1530de4e6f 100644 --- a/intersight/model/vnic_scsi_queue_settings_all_of.py +++ b/intersight/model/vnic_scsi_queue_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/vnic_tcp_offload_settings.py b/intersight/model/vnic_tcp_offload_settings.py index d9cd338a2a..9a664a980a 100644 --- a/intersight/model/vnic_tcp_offload_settings.py +++ b/intersight/model/vnic_tcp_offload_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/vnic_tcp_offload_settings_all_of.py b/intersight/model/vnic_tcp_offload_settings_all_of.py index 3278371ec8..eabe573e7a 100644 --- a/intersight/model/vnic_tcp_offload_settings_all_of.py +++ b/intersight/model/vnic_tcp_offload_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/vnic_usnic_settings.py b/intersight/model/vnic_usnic_settings.py index 47f6dda36b..513f1cb964 100644 --- a/intersight/model/vnic_usnic_settings.py +++ b/intersight/model/vnic_usnic_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/vnic_usnic_settings_all_of.py b/intersight/model/vnic_usnic_settings_all_of.py index d86315f047..b8733c0f03 100644 --- a/intersight/model/vnic_usnic_settings_all_of.py +++ b/intersight/model/vnic_usnic_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/vnic_vif_status.py b/intersight/model/vnic_vif_status.py index fa032fcbe0..ed22b1a2ee 100644 --- a/intersight/model/vnic_vif_status.py +++ b/intersight/model/vnic_vif_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/vnic_vif_status_all_of.py b/intersight/model/vnic_vif_status_all_of.py index 2836543b9f..9cb49c8088 100644 --- a/intersight/model/vnic_vif_status_all_of.py +++ b/intersight/model/vnic_vif_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/vnic_vlan_settings.py b/intersight/model/vnic_vlan_settings.py index 8c8218e00f..d92b51b191 100644 --- a/intersight/model/vnic_vlan_settings.py +++ b/intersight/model/vnic_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/vnic_vlan_settings_all_of.py b/intersight/model/vnic_vlan_settings_all_of.py index be63ee8dde..95dff3a0d7 100644 --- a/intersight/model/vnic_vlan_settings_all_of.py +++ b/intersight/model/vnic_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/vnic_vmq_settings.py b/intersight/model/vnic_vmq_settings.py index c55f33896a..b6561e5cf2 100644 --- a/intersight/model/vnic_vmq_settings.py +++ b/intersight/model/vnic_vmq_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/vnic_vmq_settings_all_of.py b/intersight/model/vnic_vmq_settings_all_of.py index e14851f5a5..f5066661fe 100644 --- a/intersight/model/vnic_vmq_settings_all_of.py +++ b/intersight/model/vnic_vmq_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/vnic_vsan_settings.py b/intersight/model/vnic_vsan_settings.py index 0ef36f2a5f..cf4f051eca 100644 --- a/intersight/model/vnic_vsan_settings.py +++ b/intersight/model/vnic_vsan_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/vnic_vsan_settings_all_of.py b/intersight/model/vnic_vsan_settings_all_of.py index c487119698..df0c9f80cb 100644 --- a/intersight/model/vnic_vsan_settings_all_of.py +++ b/intersight/model/vnic_vsan_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/vnic_vxlan_settings.py b/intersight/model/vnic_vxlan_settings.py index c375ddcbfa..26a2d96d47 100644 --- a/intersight/model/vnic_vxlan_settings.py +++ b/intersight/model/vnic_vxlan_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/vnic_vxlan_settings_all_of.py b/intersight/model/vnic_vxlan_settings_all_of.py index 080de702d3..f91a7b4c99 100644 --- a/intersight/model/vnic_vxlan_settings_all_of.py +++ b/intersight/model/vnic_vxlan_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/vrf_vrf.py b/intersight/model/vrf_vrf.py index 2ad2950c05..68297a839b 100644 --- a/intersight/model/vrf_vrf.py +++ b/intersight/model/vrf_vrf.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vrf_vrf_all_of.py b/intersight/model/vrf_vrf_all_of.py index 7c52e986d2..53c00b11bc 100644 --- a/intersight/model/vrf_vrf_all_of.py +++ b/intersight/model/vrf_vrf_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/vrf_vrf_list.py b/intersight/model/vrf_vrf_list.py index 3d1c40f7ea..dcc31680e2 100644 --- a/intersight/model/vrf_vrf_list.py +++ b/intersight/model/vrf_vrf_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/vrf_vrf_list_all_of.py b/intersight/model/vrf_vrf_list_all_of.py index 8ba32f34a8..be0a0946e8 100644 --- a/intersight/model/vrf_vrf_list_all_of.py +++ b/intersight/model/vrf_vrf_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/vrf_vrf_relationship.py b/intersight/model/vrf_vrf_relationship.py index b0fb08b15b..537f80bf98 100644 --- a/intersight/model/vrf_vrf_relationship.py +++ b/intersight/model/vrf_vrf_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 VrfVrfRelationship(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 VrfVrfRelationship(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 VrfVrfRelationship(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 VrfVrfRelationship(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 VrfVrfRelationship(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 VrfVrfRelationship(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 VrfVrfRelationship(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 VrfVrfRelationship(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 VrfVrfRelationship(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 VrfVrfRelationship(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/vrf_vrf_response.py b/intersight/model/vrf_vrf_response.py index c89404a117..ed56ff6687 100644 --- a/intersight/model/vrf_vrf_response.py +++ b/intersight/model/vrf_vrf_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/workflow_abstract_worker_task.py b/intersight/model/workflow_abstract_worker_task.py index c7415fca57..e30addeb67 100644 --- a/intersight/model/workflow_abstract_worker_task.py +++ b/intersight/model/workflow_abstract_worker_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_abstract_worker_task_all_of.py b/intersight/model/workflow_abstract_worker_task_all_of.py index 20fffb600c..57862869d1 100644 --- a/intersight/model/workflow_abstract_worker_task_all_of.py +++ b/intersight/model/workflow_abstract_worker_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_api.py b/intersight/model/workflow_api.py index 0b485e28c8..9dd9e2d7ed 100644 --- a/intersight/model/workflow_api.py +++ b/intersight/model/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 """ diff --git a/intersight/model/workflow_api_all_of.py b/intersight/model/workflow_api_all_of.py index 32be27427c..46869a3856 100644 --- a/intersight/model/workflow_api_all_of.py +++ b/intersight/model/workflow_api_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_array_data_type.py b/intersight/model/workflow_array_data_type.py index 69a94195b7..ced5c7ad60 100644 --- a/intersight/model/workflow_array_data_type.py +++ b/intersight/model/workflow_array_data_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/workflow_array_data_type_all_of.py b/intersight/model/workflow_array_data_type_all_of.py index 123b869f76..09984fe808 100644 --- a/intersight/model/workflow_array_data_type_all_of.py +++ b/intersight/model/workflow_array_data_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/workflow_array_item.py b/intersight/model/workflow_array_item.py index ae70dc803c..812857ab4c 100644 --- a/intersight/model/workflow_array_item.py +++ b/intersight/model/workflow_array_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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 WorkflowArrayItem(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/workflow_associated_roles.py b/intersight/model/workflow_associated_roles.py index 2c556ad6b3..2a10012934 100644 --- a/intersight/model/workflow_associated_roles.py +++ b/intersight/model/workflow_associated_roles.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_associated_roles_all_of.py b/intersight/model/workflow_associated_roles_all_of.py index 27a8e8863b..9d607d9d50 100644 --- a/intersight/model/workflow_associated_roles_all_of.py +++ b/intersight/model/workflow_associated_roles_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_base_data_type.py b/intersight/model/workflow_base_data_type.py index f508fd9c60..cc388e2ae6 100644 --- a/intersight/model/workflow_base_data_type.py +++ b/intersight/model/workflow_base_data_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/workflow_base_data_type_all_of.py b/intersight/model/workflow_base_data_type_all_of.py index 8d7fc6ff77..a753098505 100644 --- a/intersight/model/workflow_base_data_type_all_of.py +++ b/intersight/model/workflow_base_data_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/workflow_batch_api_executor.py b/intersight/model/workflow_batch_api_executor.py index 17926ea749..85dcb8c654 100644 --- a/intersight/model/workflow_batch_api_executor.py +++ b/intersight/model/workflow_batch_api_executor.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_batch_api_executor_all_of.py b/intersight/model/workflow_batch_api_executor_all_of.py index 9ea8a761e6..47e85f344e 100644 --- a/intersight/model/workflow_batch_api_executor_all_of.py +++ b/intersight/model/workflow_batch_api_executor_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_batch_api_executor_list.py b/intersight/model/workflow_batch_api_executor_list.py index c4c9ace296..92c84a5fa2 100644 --- a/intersight/model/workflow_batch_api_executor_list.py +++ b/intersight/model/workflow_batch_api_executor_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/workflow_batch_api_executor_list_all_of.py b/intersight/model/workflow_batch_api_executor_list_all_of.py index 1c5dcc54a0..49a4207ce1 100644 --- a/intersight/model/workflow_batch_api_executor_list_all_of.py +++ b/intersight/model/workflow_batch_api_executor_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/workflow_batch_api_executor_response.py b/intersight/model/workflow_batch_api_executor_response.py index 842b009c03..78b4b2ca8a 100644 --- a/intersight/model/workflow_batch_api_executor_response.py +++ b/intersight/model/workflow_batch_api_executor_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/workflow_build_task_meta.py b/intersight/model/workflow_build_task_meta.py index cad8b69fb1..4a3d70e8bb 100644 --- a/intersight/model/workflow_build_task_meta.py +++ b/intersight/model/workflow_build_task_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/workflow_build_task_meta_all_of.py b/intersight/model/workflow_build_task_meta_all_of.py index 7bae947f98..a8ff768ec1 100644 --- a/intersight/model/workflow_build_task_meta_all_of.py +++ b/intersight/model/workflow_build_task_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/workflow_build_task_meta_list.py b/intersight/model/workflow_build_task_meta_list.py index 2d5e0ad598..cab21e03bd 100644 --- a/intersight/model/workflow_build_task_meta_list.py +++ b/intersight/model/workflow_build_task_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/workflow_build_task_meta_list_all_of.py b/intersight/model/workflow_build_task_meta_list_all_of.py index 0a4ebe3df3..23aadade11 100644 --- a/intersight/model/workflow_build_task_meta_list_all_of.py +++ b/intersight/model/workflow_build_task_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/workflow_build_task_meta_owner.py b/intersight/model/workflow_build_task_meta_owner.py index db2423a5dc..c655945df0 100644 --- a/intersight/model/workflow_build_task_meta_owner.py +++ b/intersight/model/workflow_build_task_meta_owner.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_build_task_meta_owner_all_of.py b/intersight/model/workflow_build_task_meta_owner_all_of.py index 176797b9bc..2517f0384b 100644 --- a/intersight/model/workflow_build_task_meta_owner_all_of.py +++ b/intersight/model/workflow_build_task_meta_owner_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_build_task_meta_owner_list.py b/intersight/model/workflow_build_task_meta_owner_list.py index 34ee08a87b..027e933eb8 100644 --- a/intersight/model/workflow_build_task_meta_owner_list.py +++ b/intersight/model/workflow_build_task_meta_owner_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/workflow_build_task_meta_owner_list_all_of.py b/intersight/model/workflow_build_task_meta_owner_list_all_of.py index dbcee542af..4a58fbbefc 100644 --- a/intersight/model/workflow_build_task_meta_owner_list_all_of.py +++ b/intersight/model/workflow_build_task_meta_owner_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/workflow_build_task_meta_owner_response.py b/intersight/model/workflow_build_task_meta_owner_response.py index 8d0156e60d..5da9ccd20e 100644 --- a/intersight/model/workflow_build_task_meta_owner_response.py +++ b/intersight/model/workflow_build_task_meta_owner_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/workflow_build_task_meta_response.py b/intersight/model/workflow_build_task_meta_response.py index 68276a617a..7a5a2ae3ff 100644 --- a/intersight/model/workflow_build_task_meta_response.py +++ b/intersight/model/workflow_build_task_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/workflow_catalog.py b/intersight/model/workflow_catalog.py index 9bf439d3bc..2eb0742cb5 100644 --- a/intersight/model/workflow_catalog.py +++ b/intersight/model/workflow_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/workflow_catalog_all_of.py b/intersight/model/workflow_catalog_all_of.py index 51922cc64d..074bad5100 100644 --- a/intersight/model/workflow_catalog_all_of.py +++ b/intersight/model/workflow_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/workflow_catalog_list.py b/intersight/model/workflow_catalog_list.py index e32757ccc1..d6db13a26e 100644 --- a/intersight/model/workflow_catalog_list.py +++ b/intersight/model/workflow_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/workflow_catalog_list_all_of.py b/intersight/model/workflow_catalog_list_all_of.py index a67c9b695e..72423a5bbf 100644 --- a/intersight/model/workflow_catalog_list_all_of.py +++ b/intersight/model/workflow_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/workflow_catalog_relationship.py b/intersight/model/workflow_catalog_relationship.py index 4b203ce9e2..e8907714e5 100644 --- a/intersight/model/workflow_catalog_relationship.py +++ b/intersight/model/workflow_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 WorkflowCatalogRelationship(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 WorkflowCatalogRelationship(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 WorkflowCatalogRelationship(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 WorkflowCatalogRelationship(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 WorkflowCatalogRelationship(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 WorkflowCatalogRelationship(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 WorkflowCatalogRelationship(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 WorkflowCatalogRelationship(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 WorkflowCatalogRelationship(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 WorkflowCatalogRelationship(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/workflow_catalog_response.py b/intersight/model/workflow_catalog_response.py index 8b0006992f..9fb5cebacc 100644 --- a/intersight/model/workflow_catalog_response.py +++ b/intersight/model/workflow_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/workflow_cli_command.py b/intersight/model/workflow_cli_command.py index 28b5d83d3f..0b26740b38 100644 --- a/intersight/model/workflow_cli_command.py +++ b/intersight/model/workflow_cli_command.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_cli_command_all_of.py b/intersight/model/workflow_cli_command_all_of.py index 150b288b0e..13e264edbd 100644 --- a/intersight/model/workflow_cli_command_all_of.py +++ b/intersight/model/workflow_cli_command_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_comments.py b/intersight/model/workflow_comments.py index c759925f57..2470889951 100644 --- a/intersight/model/workflow_comments.py +++ b/intersight/model/workflow_comments.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_comments_all_of.py b/intersight/model/workflow_comments_all_of.py index 6c6df33242..5810b85804 100644 --- a/intersight/model/workflow_comments_all_of.py +++ b/intersight/model/workflow_comments_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_constraints.py b/intersight/model/workflow_constraints.py index 0f5108d93d..1e2d3e829d 100644 --- a/intersight/model/workflow_constraints.py +++ b/intersight/model/workflow_constraints.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_constraints_all_of.py b/intersight/model/workflow_constraints_all_of.py index f068f16973..11c5c38adb 100644 --- a/intersight/model/workflow_constraints_all_of.py +++ b/intersight/model/workflow_constraints_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_control_task.py b/intersight/model/workflow_control_task.py index e5212a0276..2906cdd552 100644 --- a/intersight/model/workflow_control_task.py +++ b/intersight/model/workflow_control_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_custom_array_item.py b/intersight/model/workflow_custom_array_item.py index 85a37181f7..a219d08d3b 100644 --- a/intersight/model/workflow_custom_array_item.py +++ b/intersight/model/workflow_custom_array_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_custom_array_item_all_of.py b/intersight/model/workflow_custom_array_item_all_of.py index ba95413672..ebe39a3955 100644 --- a/intersight/model/workflow_custom_array_item_all_of.py +++ b/intersight/model/workflow_custom_array_item_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_custom_data_property.py b/intersight/model/workflow_custom_data_property.py index 88631b4b6f..b9cc0f2fb4 100644 --- a/intersight/model/workflow_custom_data_property.py +++ b/intersight/model/workflow_custom_data_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/workflow_custom_data_property_all_of.py b/intersight/model/workflow_custom_data_property_all_of.py index c5172bf3b1..85b0da0399 100644 --- a/intersight/model/workflow_custom_data_property_all_of.py +++ b/intersight/model/workflow_custom_data_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/workflow_custom_data_type.py b/intersight/model/workflow_custom_data_type.py index b6fe680882..765bd2ea95 100644 --- a/intersight/model/workflow_custom_data_type.py +++ b/intersight/model/workflow_custom_data_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/workflow_custom_data_type_all_of.py b/intersight/model/workflow_custom_data_type_all_of.py index dc3158f8de..e49f77835d 100644 --- a/intersight/model/workflow_custom_data_type_all_of.py +++ b/intersight/model/workflow_custom_data_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/workflow_custom_data_type_definition.py b/intersight/model/workflow_custom_data_type_definition.py index 49c1de37e9..8a5dc6ff3e 100644 --- a/intersight/model/workflow_custom_data_type_definition.py +++ b/intersight/model/workflow_custom_data_type_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 """ @@ -235,7 +235,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) composite_type (bool): When true this data type definition is a collection of type definitions to represent composite data like JSON.. [optional] if omitted the server will use the default value of False # noqa: E501 description (str): A human-friendly description of this custom data type indicating it's domain and usage.. [optional] # noqa: E501 - label (str): A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_).. [optional] # noqa: E501 + label (str): A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.. [optional] # noqa: E501 name (str): The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.. [optional] # noqa: E501 parameter_set ([WorkflowParameterSet], none_type): [optional] # noqa: E501 properties (WorkflowCustomDataTypeProperties): [optional] # noqa: E501 diff --git a/intersight/model/workflow_custom_data_type_definition_all_of.py b/intersight/model/workflow_custom_data_type_definition_all_of.py index ba0960dce6..f96f9ad7e4 100644 --- a/intersight/model/workflow_custom_data_type_definition_all_of.py +++ b/intersight/model/workflow_custom_data_type_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 """ @@ -186,7 +186,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 _visited_composed_classes = (Animal,) composite_type (bool): When true this data type definition is a collection of type definitions to represent composite data like JSON.. [optional] if omitted the server will use the default value of False # noqa: E501 description (str): A human-friendly description of this custom data type indicating it's domain and usage.. [optional] # noqa: E501 - label (str): A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_).. [optional] # noqa: E501 + label (str): A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.. [optional] # noqa: E501 name (str): The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.. [optional] # noqa: E501 parameter_set ([WorkflowParameterSet], none_type): [optional] # noqa: E501 properties (WorkflowCustomDataTypeProperties): [optional] # noqa: E501 diff --git a/intersight/model/workflow_custom_data_type_definition_list.py b/intersight/model/workflow_custom_data_type_definition_list.py index 5103ee3cea..57d9670990 100644 --- a/intersight/model/workflow_custom_data_type_definition_list.py +++ b/intersight/model/workflow_custom_data_type_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/workflow_custom_data_type_definition_list_all_of.py b/intersight/model/workflow_custom_data_type_definition_list_all_of.py index 59ea28d45b..bce9f84b67 100644 --- a/intersight/model/workflow_custom_data_type_definition_list_all_of.py +++ b/intersight/model/workflow_custom_data_type_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/workflow_custom_data_type_definition_relationship.py b/intersight/model/workflow_custom_data_type_definition_relationship.py index 9e7c64e2d6..e45bc8d0a2 100644 --- a/intersight/model/workflow_custom_data_type_definition_relationship.py +++ b/intersight/model/workflow_custom_data_type_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 """ @@ -80,6 +80,8 @@ class WorkflowCustomDataTypeDefinitionRelationship(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 WorkflowCustomDataTypeDefinitionRelationship(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 WorkflowCustomDataTypeDefinitionRelationship(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 WorkflowCustomDataTypeDefinitionRelationship(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 WorkflowCustomDataTypeDefinitionRelationship(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 WorkflowCustomDataTypeDefinitionRelationship(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 WorkflowCustomDataTypeDefinitionRelationship(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 WorkflowCustomDataTypeDefinitionRelationship(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 WorkflowCustomDataTypeDefinitionRelationship(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 WorkflowCustomDataTypeDefinitionRelationship(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", }, } @@ -997,7 +1010,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 display_names (DisplayNames): [optional] # noqa: E501 composite_type (bool): When true this data type definition is a collection of type definitions to represent composite data like JSON.. [optional] if omitted the server will use the default value of False # noqa: E501 description (str): A human-friendly description of this custom data type indicating it's domain and usage.. [optional] # noqa: E501 - label (str): A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_).. [optional] # noqa: E501 + label (str): A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.. [optional] # noqa: E501 name (str): The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.. [optional] # noqa: E501 parameter_set ([WorkflowParameterSet], none_type): [optional] # noqa: E501 properties (WorkflowCustomDataTypeProperties): [optional] # noqa: E501 diff --git a/intersight/model/workflow_custom_data_type_definition_response.py b/intersight/model/workflow_custom_data_type_definition_response.py index 5277871612..eee8160bc4 100644 --- a/intersight/model/workflow_custom_data_type_definition_response.py +++ b/intersight/model/workflow_custom_data_type_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/workflow_custom_data_type_properties.py b/intersight/model/workflow_custom_data_type_properties.py index 9af404be30..f8717d5a86 100644 --- a/intersight/model/workflow_custom_data_type_properties.py +++ b/intersight/model/workflow_custom_data_type_properties.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_custom_data_type_properties_all_of.py b/intersight/model/workflow_custom_data_type_properties_all_of.py index 51e4c35a06..1063e6a182 100644 --- a/intersight/model/workflow_custom_data_type_properties_all_of.py +++ b/intersight/model/workflow_custom_data_type_properties_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_decision_case.py b/intersight/model/workflow_decision_case.py index 92a228d448..eb0e138e8e 100644 --- a/intersight/model/workflow_decision_case.py +++ b/intersight/model/workflow_decision_case.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_decision_case_all_of.py b/intersight/model/workflow_decision_case_all_of.py index b52d2157aa..ecc50f3790 100644 --- a/intersight/model/workflow_decision_case_all_of.py +++ b/intersight/model/workflow_decision_case_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_decision_task.py b/intersight/model/workflow_decision_task.py index b285f65eeb..9bd00c9a0e 100644 --- a/intersight/model/workflow_decision_task.py +++ b/intersight/model/workflow_decision_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_decision_task_all_of.py b/intersight/model/workflow_decision_task_all_of.py index dc255382d6..ae28afd5cc 100644 --- a/intersight/model/workflow_decision_task_all_of.py +++ b/intersight/model/workflow_decision_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_default_value.py b/intersight/model/workflow_default_value.py index d4acbfb298..9d29d5f936 100644 --- a/intersight/model/workflow_default_value.py +++ b/intersight/model/workflow_default_value.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_default_value_all_of.py b/intersight/model/workflow_default_value_all_of.py index 6c40b6ac15..2a729e62d8 100644 --- a/intersight/model/workflow_default_value_all_of.py +++ b/intersight/model/workflow_default_value_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_display_meta.py b/intersight/model/workflow_display_meta.py index f80b41f047..f28e142b6c 100644 --- a/intersight/model/workflow_display_meta.py +++ b/intersight/model/workflow_display_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/workflow_display_meta_all_of.py b/intersight/model/workflow_display_meta_all_of.py index a8a4425c6e..144bc45c7c 100644 --- a/intersight/model/workflow_display_meta_all_of.py +++ b/intersight/model/workflow_display_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/workflow_dynamic_workflow_action_task_list.py b/intersight/model/workflow_dynamic_workflow_action_task_list.py index 9f80a3f8e8..550b214a2d 100644 --- a/intersight/model/workflow_dynamic_workflow_action_task_list.py +++ b/intersight/model/workflow_dynamic_workflow_action_task_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/workflow_dynamic_workflow_action_task_list_all_of.py b/intersight/model/workflow_dynamic_workflow_action_task_list_all_of.py index 956c36b04c..12fa932803 100644 --- a/intersight/model/workflow_dynamic_workflow_action_task_list_all_of.py +++ b/intersight/model/workflow_dynamic_workflow_action_task_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/workflow_end_task.py b/intersight/model/workflow_end_task.py index 8075b13938..479f19dab9 100644 --- a/intersight/model/workflow_end_task.py +++ b/intersight/model/workflow_end_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_enum_entry.py b/intersight/model/workflow_enum_entry.py index ade230f481..3ad4ecf058 100644 --- a/intersight/model/workflow_enum_entry.py +++ b/intersight/model/workflow_enum_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 """ @@ -175,7 +175,7 @@ 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,) - label (str): Label for the enum value. A user friendly short string to identify the enum value. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_).. [optional] # noqa: E501 + label (str): Label for the enum value. A user friendly short string to identify the enum value. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_) and must be at least 2 characters.. [optional] # noqa: E501 value (str): Enum value for this enum entry. Value will be passed to the workflow as string type for execution. Value can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), or an underscore (_).. [optional] # noqa: E501 """ diff --git a/intersight/model/workflow_enum_entry_all_of.py b/intersight/model/workflow_enum_entry_all_of.py index ab763cd912..66f7322cf0 100644 --- a/intersight/model/workflow_enum_entry_all_of.py +++ b/intersight/model/workflow_enum_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 """ @@ -157,7 +157,7 @@ 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,) - label (str): Label for the enum value. A user friendly short string to identify the enum value. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_).. [optional] # noqa: E501 + label (str): Label for the enum value. A user friendly short string to identify the enum value. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_) and must be at least 2 characters.. [optional] # noqa: E501 value (str): Enum value for this enum entry. Value will be passed to the workflow as string type for execution. Value can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), forward slash (/), or an underscore (_).. [optional] # noqa: E501 """ diff --git a/intersight/model/workflow_error_response_handler.py b/intersight/model/workflow_error_response_handler.py index 17369081c9..94745e1102 100644 --- a/intersight/model/workflow_error_response_handler.py +++ b/intersight/model/workflow_error_response_handler.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_error_response_handler_all_of.py b/intersight/model/workflow_error_response_handler_all_of.py index 3c15eb2de5..fac416d496 100644 --- a/intersight/model/workflow_error_response_handler_all_of.py +++ b/intersight/model/workflow_error_response_handler_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_error_response_handler_list.py b/intersight/model/workflow_error_response_handler_list.py index 1dfa4aae86..43874b39fd 100644 --- a/intersight/model/workflow_error_response_handler_list.py +++ b/intersight/model/workflow_error_response_handler_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/workflow_error_response_handler_list_all_of.py b/intersight/model/workflow_error_response_handler_list_all_of.py index 82029d4246..73db169946 100644 --- a/intersight/model/workflow_error_response_handler_list_all_of.py +++ b/intersight/model/workflow_error_response_handler_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/workflow_error_response_handler_relationship.py b/intersight/model/workflow_error_response_handler_relationship.py index 80bdbe0b1e..878581336b 100644 --- a/intersight/model/workflow_error_response_handler_relationship.py +++ b/intersight/model/workflow_error_response_handler_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 WorkflowErrorResponseHandlerRelationship(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", @@ -146,6 +148,7 @@ class WorkflowErrorResponseHandlerRelationship(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", @@ -194,9 +197,12 @@ class WorkflowErrorResponseHandlerRelationship(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", @@ -260,10 +266,6 @@ class WorkflowErrorResponseHandlerRelationship(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", @@ -272,6 +274,7 @@ class WorkflowErrorResponseHandlerRelationship(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", @@ -520,6 +523,7 @@ class WorkflowErrorResponseHandlerRelationship(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", @@ -689,6 +693,11 @@ class WorkflowErrorResponseHandlerRelationship(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", @@ -804,6 +813,7 @@ class WorkflowErrorResponseHandlerRelationship(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", @@ -835,6 +845,7 @@ class WorkflowErrorResponseHandlerRelationship(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", @@ -867,12 +878,14 @@ class WorkflowErrorResponseHandlerRelationship(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/workflow_error_response_handler_response.py b/intersight/model/workflow_error_response_handler_response.py index 043745ef0b..ddf771318e 100644 --- a/intersight/model/workflow_error_response_handler_response.py +++ b/intersight/model/workflow_error_response_handler_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/workflow_expect_prompt.py b/intersight/model/workflow_expect_prompt.py index 9e99ffb280..c7af584fbe 100644 --- a/intersight/model/workflow_expect_prompt.py +++ b/intersight/model/workflow_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/workflow_expect_prompt_all_of.py b/intersight/model/workflow_expect_prompt_all_of.py index f663b3972e..0c3fb3c924 100644 --- a/intersight/model/workflow_expect_prompt_all_of.py +++ b/intersight/model/workflow_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/workflow_failure_end_task.py b/intersight/model/workflow_failure_end_task.py index 2890544797..5ec13f0e76 100644 --- a/intersight/model/workflow_failure_end_task.py +++ b/intersight/model/workflow_failure_end_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_file_download_op.py b/intersight/model/workflow_file_download_op.py index 97fb05c26c..33a8eb056f 100644 --- a/intersight/model/workflow_file_download_op.py +++ b/intersight/model/workflow_file_download_op.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_file_download_op_all_of.py b/intersight/model/workflow_file_download_op_all_of.py index 04c2a86d7f..f8636adc1a 100644 --- a/intersight/model/workflow_file_download_op_all_of.py +++ b/intersight/model/workflow_file_download_op_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_file_operations.py b/intersight/model/workflow_file_operations.py index fb3b54d586..0a37a70df3 100644 --- a/intersight/model/workflow_file_operations.py +++ b/intersight/model/workflow_file_operations.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_file_operations_all_of.py b/intersight/model/workflow_file_operations_all_of.py index 6edb647a2c..0f8c0edb96 100644 --- a/intersight/model/workflow_file_operations_all_of.py +++ b/intersight/model/workflow_file_operations_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_file_template_op.py b/intersight/model/workflow_file_template_op.py index a017be2fde..0f40c943e9 100644 --- a/intersight/model/workflow_file_template_op.py +++ b/intersight/model/workflow_file_template_op.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_file_template_op_all_of.py b/intersight/model/workflow_file_template_op_all_of.py index 527cfcf7eb..2c952d40d0 100644 --- a/intersight/model/workflow_file_template_op_all_of.py +++ b/intersight/model/workflow_file_template_op_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_file_transfer.py b/intersight/model/workflow_file_transfer.py index e62a5a54de..7093e0d428 100644 --- a/intersight/model/workflow_file_transfer.py +++ b/intersight/model/workflow_file_transfer.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_file_transfer_all_of.py b/intersight/model/workflow_file_transfer_all_of.py index c18ed08d95..74e7245098 100644 --- a/intersight/model/workflow_file_transfer_all_of.py +++ b/intersight/model/workflow_file_transfer_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_fork_task.py b/intersight/model/workflow_fork_task.py index 3a501825c7..4760f99af6 100644 --- a/intersight/model/workflow_fork_task.py +++ b/intersight/model/workflow_fork_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_fork_task_all_of.py b/intersight/model/workflow_fork_task_all_of.py index 713d27f66e..09339e0d21 100644 --- a/intersight/model/workflow_fork_task_all_of.py +++ b/intersight/model/workflow_fork_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_initiator_context.py b/intersight/model/workflow_initiator_context.py index 4d8e549553..76b81ad36e 100644 --- a/intersight/model/workflow_initiator_context.py +++ b/intersight/model/workflow_initiator_context.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_initiator_context_all_of.py b/intersight/model/workflow_initiator_context_all_of.py index b040a93fc7..82a0c120aa 100644 --- a/intersight/model/workflow_initiator_context_all_of.py +++ b/intersight/model/workflow_initiator_context_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_internal_properties.py b/intersight/model/workflow_internal_properties.py index ee0d47c34a..9b219a54ed 100644 --- a/intersight/model/workflow_internal_properties.py +++ b/intersight/model/workflow_internal_properties.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_internal_properties_all_of.py b/intersight/model/workflow_internal_properties_all_of.py index 2cb7ed6e20..fbbd05cae3 100644 --- a/intersight/model/workflow_internal_properties_all_of.py +++ b/intersight/model/workflow_internal_properties_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_join_task.py b/intersight/model/workflow_join_task.py index f5b7ca2c55..7cfdd91d4e 100644 --- a/intersight/model/workflow_join_task.py +++ b/intersight/model/workflow_join_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_join_task_all_of.py b/intersight/model/workflow_join_task_all_of.py index 03502a5b45..a96fdbbc34 100644 --- a/intersight/model/workflow_join_task_all_of.py +++ b/intersight/model/workflow_join_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_loop_task.py b/intersight/model/workflow_loop_task.py index 9ff8bbfac5..d95055811e 100644 --- a/intersight/model/workflow_loop_task.py +++ b/intersight/model/workflow_loop_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_loop_task_all_of.py b/intersight/model/workflow_loop_task_all_of.py index cd992df79e..0d8bdcfd19 100644 --- a/intersight/model/workflow_loop_task_all_of.py +++ b/intersight/model/workflow_loop_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_message.py b/intersight/model/workflow_message.py index 8647f0619a..28b6a92a02 100644 --- a/intersight/model/workflow_message.py +++ b/intersight/model/workflow_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/workflow_message_all_of.py b/intersight/model/workflow_message_all_of.py index 642b412ed3..211c9438cf 100644 --- a/intersight/model/workflow_message_all_of.py +++ b/intersight/model/workflow_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/workflow_mo_reference_array_item.py b/intersight/model/workflow_mo_reference_array_item.py index 97314aaefc..768e774c62 100644 --- a/intersight/model/workflow_mo_reference_array_item.py +++ b/intersight/model/workflow_mo_reference_array_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_mo_reference_array_item_all_of.py b/intersight/model/workflow_mo_reference_array_item_all_of.py index dcec45e953..6ff64d6f7b 100644 --- a/intersight/model/workflow_mo_reference_array_item_all_of.py +++ b/intersight/model/workflow_mo_reference_array_item_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_mo_reference_data_type.py b/intersight/model/workflow_mo_reference_data_type.py index ff6c8a1bcb..2d260fa149 100644 --- a/intersight/model/workflow_mo_reference_data_type.py +++ b/intersight/model/workflow_mo_reference_data_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/workflow_mo_reference_data_type_all_of.py b/intersight/model/workflow_mo_reference_data_type_all_of.py index 5e16663311..29dbfe6523 100644 --- a/intersight/model/workflow_mo_reference_data_type_all_of.py +++ b/intersight/model/workflow_mo_reference_data_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/workflow_mo_reference_property.py b/intersight/model/workflow_mo_reference_property.py index 8a476a68ab..8e68b8c69f 100644 --- a/intersight/model/workflow_mo_reference_property.py +++ b/intersight/model/workflow_mo_reference_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/workflow_mo_reference_property_all_of.py b/intersight/model/workflow_mo_reference_property_all_of.py index a81066ae82..47006a3595 100644 --- a/intersight/model/workflow_mo_reference_property_all_of.py +++ b/intersight/model/workflow_mo_reference_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/workflow_parameter_set.py b/intersight/model/workflow_parameter_set.py index d41559053c..efd4a351b4 100644 --- a/intersight/model/workflow_parameter_set.py +++ b/intersight/model/workflow_parameter_set.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_parameter_set_all_of.py b/intersight/model/workflow_parameter_set_all_of.py index c588a0e0d4..fafcc273c3 100644 --- a/intersight/model/workflow_parameter_set_all_of.py +++ b/intersight/model/workflow_parameter_set_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_pending_dynamic_workflow_info.py b/intersight/model/workflow_pending_dynamic_workflow_info.py index 11304318bf..96ad9f3082 100644 --- a/intersight/model/workflow_pending_dynamic_workflow_info.py +++ b/intersight/model/workflow_pending_dynamic_workflow_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/workflow_pending_dynamic_workflow_info_all_of.py b/intersight/model/workflow_pending_dynamic_workflow_info_all_of.py index e08a78e176..cd3e8d3dd6 100644 --- a/intersight/model/workflow_pending_dynamic_workflow_info_all_of.py +++ b/intersight/model/workflow_pending_dynamic_workflow_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/workflow_pending_dynamic_workflow_info_list.py b/intersight/model/workflow_pending_dynamic_workflow_info_list.py index 9cfa1088a9..54dfa5a7b2 100644 --- a/intersight/model/workflow_pending_dynamic_workflow_info_list.py +++ b/intersight/model/workflow_pending_dynamic_workflow_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/workflow_pending_dynamic_workflow_info_list_all_of.py b/intersight/model/workflow_pending_dynamic_workflow_info_list_all_of.py index 087713538c..91f900308b 100644 --- a/intersight/model/workflow_pending_dynamic_workflow_info_list_all_of.py +++ b/intersight/model/workflow_pending_dynamic_workflow_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/workflow_pending_dynamic_workflow_info_relationship.py b/intersight/model/workflow_pending_dynamic_workflow_info_relationship.py index d29cf57006..fe22b0f163 100644 --- a/intersight/model/workflow_pending_dynamic_workflow_info_relationship.py +++ b/intersight/model/workflow_pending_dynamic_workflow_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 WorkflowPendingDynamicWorkflowInfoRelationship(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 WorkflowPendingDynamicWorkflowInfoRelationship(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 WorkflowPendingDynamicWorkflowInfoRelationship(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 WorkflowPendingDynamicWorkflowInfoRelationship(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 WorkflowPendingDynamicWorkflowInfoRelationship(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 WorkflowPendingDynamicWorkflowInfoRelationship(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 WorkflowPendingDynamicWorkflowInfoRelationship(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 WorkflowPendingDynamicWorkflowInfoRelationship(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 WorkflowPendingDynamicWorkflowInfoRelationship(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 WorkflowPendingDynamicWorkflowInfoRelationship(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/workflow_pending_dynamic_workflow_info_response.py b/intersight/model/workflow_pending_dynamic_workflow_info_response.py index cfed7bd866..dab2bbd59d 100644 --- a/intersight/model/workflow_pending_dynamic_workflow_info_response.py +++ b/intersight/model/workflow_pending_dynamic_workflow_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/workflow_primitive_array_item.py b/intersight/model/workflow_primitive_array_item.py index 3cdf808bf2..2976340fdb 100644 --- a/intersight/model/workflow_primitive_array_item.py +++ b/intersight/model/workflow_primitive_array_item.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_primitive_array_item_all_of.py b/intersight/model/workflow_primitive_array_item_all_of.py index e610826f96..5019cdf173 100644 --- a/intersight/model/workflow_primitive_array_item_all_of.py +++ b/intersight/model/workflow_primitive_array_item_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_primitive_data_property.py b/intersight/model/workflow_primitive_data_property.py index 24d1bbe604..7a7280d742 100644 --- a/intersight/model/workflow_primitive_data_property.py +++ b/intersight/model/workflow_primitive_data_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/workflow_primitive_data_property_all_of.py b/intersight/model/workflow_primitive_data_property_all_of.py index 2d76a5e064..0af7598c44 100644 --- a/intersight/model/workflow_primitive_data_property_all_of.py +++ b/intersight/model/workflow_primitive_data_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/workflow_primitive_data_type.py b/intersight/model/workflow_primitive_data_type.py index 3ef58dd0de..b189ebbe13 100644 --- a/intersight/model/workflow_primitive_data_type.py +++ b/intersight/model/workflow_primitive_data_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/workflow_primitive_data_type_all_of.py b/intersight/model/workflow_primitive_data_type_all_of.py index 63de01aaaf..c3b795639c 100644 --- a/intersight/model/workflow_primitive_data_type_all_of.py +++ b/intersight/model/workflow_primitive_data_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/workflow_properties.py b/intersight/model/workflow_properties.py index a67e7c2acf..1eef2ac248 100644 --- a/intersight/model/workflow_properties.py +++ b/intersight/model/workflow_properties.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -121,6 +121,7 @@ def openapi_types(): return { 'class_id': (str,), # noqa: E501 'object_type': (str,), # noqa: E501 + 'cloneable': (bool,), # noqa: E501 'external_meta': (bool,), # noqa: E501 'input_definition': ([WorkflowBaseDataType], none_type,), # noqa: E501 'output_definition': ([WorkflowBaseDataType], none_type,), # noqa: E501 @@ -143,6 +144,7 @@ def discriminator(): attribute_map = { 'class_id': 'ClassId', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 + 'cloneable': 'Cloneable', # noqa: E501 'external_meta': 'ExternalMeta', # noqa: E501 'input_definition': 'InputDefinition', # noqa: E501 'output_definition': 'OutputDefinition', # noqa: E501 @@ -205,6 +207,7 @@ 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,) + cloneable (bool): When set to false task is not cloneable. It is set to true only if task is of ApiTask type and it is not system defined.. [optional] if omitted the server will use the default value of True # noqa: E501 external_meta (bool): When set to false the task definition can only be used by internal system workflows. When set to true then the task can be included in user defined workflows.. [optional] if omitted the server will use the default value of False # noqa: E501 input_definition ([WorkflowBaseDataType], none_type): [optional] # noqa: E501 output_definition ([WorkflowBaseDataType], none_type): [optional] # noqa: E501 diff --git a/intersight/model/workflow_properties_all_of.py b/intersight/model/workflow_properties_all_of.py index 421ad3f3a6..db99e4e315 100644 --- a/intersight/model/workflow_properties_all_of.py +++ b/intersight/model/workflow_properties_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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,7 @@ def openapi_types(): return { 'class_id': (str,), # noqa: E501 'object_type': (str,), # noqa: E501 + 'cloneable': (bool,), # noqa: E501 'external_meta': (bool,), # noqa: E501 'input_definition': ([WorkflowBaseDataType], none_type,), # noqa: E501 'output_definition': ([WorkflowBaseDataType], none_type,), # noqa: E501 @@ -129,6 +130,7 @@ def discriminator(): attribute_map = { 'class_id': 'ClassId', # noqa: E501 'object_type': 'ObjectType', # noqa: E501 + 'cloneable': 'Cloneable', # noqa: E501 'external_meta': 'ExternalMeta', # noqa: E501 'input_definition': 'InputDefinition', # noqa: E501 'output_definition': 'OutputDefinition', # noqa: E501 @@ -190,6 +192,7 @@ 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,) + cloneable (bool): When set to false task is not cloneable. It is set to true only if task is of ApiTask type and it is not system defined.. [optional] if omitted the server will use the default value of True # noqa: E501 external_meta (bool): When set to false the task definition can only be used by internal system workflows. When set to true then the task can be included in user defined workflows.. [optional] if omitted the server will use the default value of False # noqa: E501 input_definition ([WorkflowBaseDataType], none_type): [optional] # noqa: E501 output_definition ([WorkflowBaseDataType], none_type): [optional] # noqa: E501 diff --git a/intersight/model/workflow_result_handler.py b/intersight/model/workflow_result_handler.py index dd6e51c65f..34a63976f4 100644 --- a/intersight/model/workflow_result_handler.py +++ b/intersight/model/workflow_result_handler.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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 WorkflowResultHandler(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/workflow_rollback_task.py b/intersight/model/workflow_rollback_task.py index 03718f6b8f..df1fda5642 100644 --- a/intersight/model/workflow_rollback_task.py +++ b/intersight/model/workflow_rollback_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ @@ -99,6 +99,7 @@ def openapi_types(): 'description': (str,), # noqa: E501 'input_parameters': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 'name': (str,), # noqa: E501 + 'skip_condition': (str,), # noqa: E501 'task_moid': (str,), # noqa: E501 'version': (int,), # noqa: E501 } @@ -118,6 +119,7 @@ def discriminator(): 'description': 'Description', # noqa: E501 'input_parameters': 'InputParameters', # noqa: E501 'name': 'Name', # noqa: E501 + 'skip_condition': 'SkipCondition', # noqa: E501 'task_moid': 'TaskMoid', # noqa: E501 'version': 'Version', # noqa: E501 } @@ -177,6 +179,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 description (str): Description of rollback task definition.. [optional] # noqa: E501 input_parameters (bool, date, datetime, dict, float, int, list, str, none_type): Input parameters mapping for rollback task from the input or output of the main task definition.. [optional] # noqa: E501 name (str): Name of the task definition which is capable of doing rollback of this task.. [optional] # noqa: E501 + skip_condition (str): The rollback task will not be executed if the given condition evaluates to \"true\".. [optional] # noqa: E501 task_moid (str): The resolved referenced rollback task definition managed object.. [optional] # noqa: E501 version (int): The version of the task definition.. [optional] # noqa: E501 """ diff --git a/intersight/model/workflow_rollback_task_all_of.py b/intersight/model/workflow_rollback_task_all_of.py index e5ecb42ae3..806d1cf8a9 100644 --- a/intersight/model/workflow_rollback_task_all_of.py +++ b/intersight/model/workflow_rollback_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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,7 @@ def openapi_types(): 'description': (str,), # noqa: E501 'input_parameters': (bool, date, datetime, dict, float, int, list, str, none_type,), # noqa: E501 'name': (str,), # noqa: E501 + 'skip_condition': (str,), # noqa: E501 'task_moid': (str,), # noqa: E501 'version': (int,), # noqa: E501 } @@ -101,6 +102,7 @@ def discriminator(): 'description': 'Description', # noqa: E501 'input_parameters': 'InputParameters', # noqa: E501 'name': 'Name', # noqa: E501 + 'skip_condition': 'SkipCondition', # noqa: E501 'task_moid': 'TaskMoid', # noqa: E501 'version': 'Version', # noqa: E501 } @@ -159,6 +161,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 description (str): Description of rollback task definition.. [optional] # noqa: E501 input_parameters (bool, date, datetime, dict, float, int, list, str, none_type): Input parameters mapping for rollback task from the input or output of the main task definition.. [optional] # noqa: E501 name (str): Name of the task definition which is capable of doing rollback of this task.. [optional] # noqa: E501 + skip_condition (str): The rollback task will not be executed if the given condition evaluates to \"true\".. [optional] # noqa: E501 task_moid (str): The resolved referenced rollback task definition managed object.. [optional] # noqa: E501 version (int): The version of the task definition.. [optional] # noqa: E501 """ diff --git a/intersight/model/workflow_rollback_workflow.py b/intersight/model/workflow_rollback_workflow.py index a431e8a26c..de40067943 100644 --- a/intersight/model/workflow_rollback_workflow.py +++ b/intersight/model/workflow_rollback_workflow.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_rollback_workflow_all_of.py b/intersight/model/workflow_rollback_workflow_all_of.py index d9b88dd07b..72cb445084 100644 --- a/intersight/model/workflow_rollback_workflow_all_of.py +++ b/intersight/model/workflow_rollback_workflow_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_rollback_workflow_list.py b/intersight/model/workflow_rollback_workflow_list.py index 3ec00ebc73..4987a103a2 100644 --- a/intersight/model/workflow_rollback_workflow_list.py +++ b/intersight/model/workflow_rollback_workflow_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/workflow_rollback_workflow_list_all_of.py b/intersight/model/workflow_rollback_workflow_list_all_of.py index fd9da577b9..80185532c8 100644 --- a/intersight/model/workflow_rollback_workflow_list_all_of.py +++ b/intersight/model/workflow_rollback_workflow_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/workflow_rollback_workflow_response.py b/intersight/model/workflow_rollback_workflow_response.py index b3db22bd9d..3cafe53c61 100644 --- a/intersight/model/workflow_rollback_workflow_response.py +++ b/intersight/model/workflow_rollback_workflow_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/workflow_rollback_workflow_task.py b/intersight/model/workflow_rollback_workflow_task.py index 8d23a4489e..56852bed8a 100644 --- a/intersight/model/workflow_rollback_workflow_task.py +++ b/intersight/model/workflow_rollback_workflow_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_rollback_workflow_task_all_of.py b/intersight/model/workflow_rollback_workflow_task_all_of.py index a60140c4eb..6cabeda086 100644 --- a/intersight/model/workflow_rollback_workflow_task_all_of.py +++ b/intersight/model/workflow_rollback_workflow_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_selector_property.py b/intersight/model/workflow_selector_property.py index 57b4d3aabf..20ce85d45e 100644 --- a/intersight/model/workflow_selector_property.py +++ b/intersight/model/workflow_selector_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/workflow_selector_property_all_of.py b/intersight/model/workflow_selector_property_all_of.py index 916d6a2098..68f3b5c9bb 100644 --- a/intersight/model/workflow_selector_property_all_of.py +++ b/intersight/model/workflow_selector_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/workflow_ssh_cmd.py b/intersight/model/workflow_ssh_cmd.py index e7f6ede238..afdad89b72 100644 --- a/intersight/model/workflow_ssh_cmd.py +++ b/intersight/model/workflow_ssh_cmd.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_ssh_cmd_all_of.py b/intersight/model/workflow_ssh_cmd_all_of.py index aaa2f35e80..58d12f5e0a 100644 --- a/intersight/model/workflow_ssh_cmd_all_of.py +++ b/intersight/model/workflow_ssh_cmd_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_ssh_config.py b/intersight/model/workflow_ssh_config.py index ce2cd2181c..4e26d3f0ea 100644 --- a/intersight/model/workflow_ssh_config.py +++ b/intersight/model/workflow_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/workflow_ssh_config_all_of.py b/intersight/model/workflow_ssh_config_all_of.py index 67c27bb8c6..fe1996c4ba 100644 --- a/intersight/model/workflow_ssh_config_all_of.py +++ b/intersight/model/workflow_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/workflow_ssh_session.py b/intersight/model/workflow_ssh_session.py index 5e92a18478..eb24c9f616 100644 --- a/intersight/model/workflow_ssh_session.py +++ b/intersight/model/workflow_ssh_session.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_ssh_session_all_of.py b/intersight/model/workflow_ssh_session_all_of.py index 2ecdd12ef7..d0c672075e 100644 --- a/intersight/model/workflow_ssh_session_all_of.py +++ b/intersight/model/workflow_ssh_session_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_start_task.py b/intersight/model/workflow_start_task.py index a7981aa4ef..669a0ab635 100644 --- a/intersight/model/workflow_start_task.py +++ b/intersight/model/workflow_start_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_start_task_all_of.py b/intersight/model/workflow_start_task_all_of.py index 6913561e48..10d8ddb81a 100644 --- a/intersight/model/workflow_start_task_all_of.py +++ b/intersight/model/workflow_start_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_sub_workflow_task.py b/intersight/model/workflow_sub_workflow_task.py index a23845bf7c..3a0cb817e2 100644 --- a/intersight/model/workflow_sub_workflow_task.py +++ b/intersight/model/workflow_sub_workflow_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_sub_workflow_task_all_of.py b/intersight/model/workflow_sub_workflow_task_all_of.py index ede6474a80..03ec26228e 100644 --- a/intersight/model/workflow_sub_workflow_task_all_of.py +++ b/intersight/model/workflow_sub_workflow_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_success_end_task.py b/intersight/model/workflow_success_end_task.py index 5ead405429..cb2772e830 100644 --- a/intersight/model/workflow_success_end_task.py +++ b/intersight/model/workflow_success_end_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_target_context.py b/intersight/model/workflow_target_context.py index 32c9722fac..a2e47133e1 100644 --- a/intersight/model/workflow_target_context.py +++ b/intersight/model/workflow_target_context.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_target_context_all_of.py b/intersight/model/workflow_target_context_all_of.py index caa8fc6dfd..7bfb133ca2 100644 --- a/intersight/model/workflow_target_context_all_of.py +++ b/intersight/model/workflow_target_context_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_target_data_type.py b/intersight/model/workflow_target_data_type.py index 71ccba1538..32af7e1b82 100644 --- a/intersight/model/workflow_target_data_type.py +++ b/intersight/model/workflow_target_data_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/workflow_target_data_type_all_of.py b/intersight/model/workflow_target_data_type_all_of.py index 54c947363c..50aa9fbe39 100644 --- a/intersight/model/workflow_target_data_type_all_of.py +++ b/intersight/model/workflow_target_data_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/workflow_target_property.py b/intersight/model/workflow_target_property.py index bae12adc3c..13423d5a01 100644 --- a/intersight/model/workflow_target_property.py +++ b/intersight/model/workflow_target_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/workflow_target_property_all_of.py b/intersight/model/workflow_target_property_all_of.py index e38fcb16d8..82117e87c0 100644 --- a/intersight/model/workflow_target_property_all_of.py +++ b/intersight/model/workflow_target_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/workflow_task_constraints.py b/intersight/model/workflow_task_constraints.py index 0c465c4a95..5a6c38e8cc 100644 --- a/intersight/model/workflow_task_constraints.py +++ b/intersight/model/workflow_task_constraints.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_task_constraints_all_of.py b/intersight/model/workflow_task_constraints_all_of.py index d3fa926ce3..20e2b47a94 100644 --- a/intersight/model/workflow_task_constraints_all_of.py +++ b/intersight/model/workflow_task_constraints_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_task_debug_log.py b/intersight/model/workflow_task_debug_log.py index 5735f75c03..3163fbb1d8 100644 --- a/intersight/model/workflow_task_debug_log.py +++ b/intersight/model/workflow_task_debug_log.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_task_debug_log_all_of.py b/intersight/model/workflow_task_debug_log_all_of.py index 90d975190e..6617677ee2 100644 --- a/intersight/model/workflow_task_debug_log_all_of.py +++ b/intersight/model/workflow_task_debug_log_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_task_debug_log_list.py b/intersight/model/workflow_task_debug_log_list.py index c43e56042e..4c638a06e7 100644 --- a/intersight/model/workflow_task_debug_log_list.py +++ b/intersight/model/workflow_task_debug_log_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/workflow_task_debug_log_list_all_of.py b/intersight/model/workflow_task_debug_log_list_all_of.py index 2f2e02bce9..b476ab6e53 100644 --- a/intersight/model/workflow_task_debug_log_list_all_of.py +++ b/intersight/model/workflow_task_debug_log_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/workflow_task_debug_log_response.py b/intersight/model/workflow_task_debug_log_response.py index 8be008b84b..3ef413f669 100644 --- a/intersight/model/workflow_task_debug_log_response.py +++ b/intersight/model/workflow_task_debug_log_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/workflow_task_definition.py b/intersight/model/workflow_task_definition.py index b3bc9a8ae2..04fb480a83 100644 --- a/intersight/model/workflow_task_definition.py +++ b/intersight/model/workflow_task_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 """ @@ -149,6 +149,7 @@ def openapi_types(): 'secure_prop_access': (bool,), # noqa: E501 'version': (int,), # noqa: E501 'catalog': (WorkflowCatalogRelationship,), # noqa: E501 + 'cloned_from': (WorkflowTaskDefinitionRelationship,), # noqa: E501 'implemented_tasks': ([WorkflowTaskDefinitionRelationship], none_type,), # noqa: E501 'interface_task': (WorkflowTaskDefinitionRelationship,), # noqa: E501 'task_metadata': (WorkflowTaskMetadataRelationship,), # noqa: E501 @@ -189,6 +190,7 @@ def discriminator(): 'secure_prop_access': 'SecurePropAccess', # noqa: E501 'version': 'Version', # noqa: E501 'catalog': 'Catalog', # noqa: E501 + 'cloned_from': 'ClonedFrom', # noqa: E501 'implemented_tasks': 'ImplementedTasks', # noqa: E501 'interface_task': 'InterfaceTask', # noqa: E501 'task_metadata': 'TaskMetadata', # noqa: E501 @@ -261,7 +263,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 default_version (bool): When true this will be the task version that is used when a specific task definition version is not specified. The very first task definition created with a name will be set as the default version, after that user can explicitly set any version of the task definition as the default version.. [optional] # noqa: E501 description (str): A user friendly description about task on what operations are done as part of the task execution and any other specific information about task input and output.. [optional] # noqa: E501 internal_properties (WorkflowInternalProperties): [optional] # noqa: E501 - label (str): A user friendly short name to identify the task definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_).. [optional] # noqa: E501 + label (str): A user friendly short name to identify the task definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_) and must be at least 2 characters.. [optional] # noqa: E501 license_entitlement (str): License entitlement required to run this task. It is determined by license requirement of features. * `Base` - Base as a License type. It is default license type. * `Essential` - Essential as a License type. * `Standard` - Standard as a License type. * `Advantage` - Advantage as a License type. * `Premier` - Premier as a License type. * `IWO-Essential` - IWO-Essential as a License type. * `IWO-Advantage` - IWO-Advantage as a License type. * `IWO-Premier` - IWO-Premier as a License type.. [optional] if omitted the server will use the default value of "Base" # noqa: E501 name (str): The name of the task definition. The name should follow this convention Verb or Action is a required portion of the name and this must be part of the pre-approved verb list. Category is an optional field and this will refer to the broad category of the task referring to the type of resource or endpoint. If there is no specific category then use \"Generic\" if required. Vendor is an optional field and this will refer to the specific vendor this task applies to. If the task is generic and not tied to a vendor, then do not specify anything. Product is an optional field, this will contain the vendor product and model when desired. Noun or object is a required field and this will contain the noun or object on which the action is being performed. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), or an underscore (_). Examples SendEmail - This is a task in Generic category for sending email. NewStorageVolume - This is a vendor agnostic task under Storage device category for creating a new volume.. [optional] # noqa: E501 properties (WorkflowProperties): [optional] # noqa: E501 @@ -269,6 +271,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 secure_prop_access (bool): If set to true, the task requires access to secure properties and uses an encryption token associated with a workflow moid to encrypt or decrypt the secure properties.. [optional] # noqa: E501 version (int): The version of the task definition so we can support multiple versions of a task definition.. [optional] if omitted the server will use the default value of 1 # noqa: E501 catalog (WorkflowCatalogRelationship): [optional] # noqa: E501 + cloned_from (WorkflowTaskDefinitionRelationship): [optional] # noqa: E501 implemented_tasks ([WorkflowTaskDefinitionRelationship], none_type): An array of relationships to workflowTaskDefinition resources.. [optional] # noqa: E501 interface_task (WorkflowTaskDefinitionRelationship): [optional] # noqa: E501 task_metadata (WorkflowTaskMetadataRelationship): [optional] # noqa: E501 diff --git a/intersight/model/workflow_task_definition_all_of.py b/intersight/model/workflow_task_definition_all_of.py index dffc067e4e..9009b015af 100644 --- a/intersight/model/workflow_task_definition_all_of.py +++ b/intersight/model/workflow_task_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 """ @@ -130,6 +130,7 @@ def openapi_types(): 'secure_prop_access': (bool,), # noqa: E501 'version': (int,), # noqa: E501 'catalog': (WorkflowCatalogRelationship,), # noqa: E501 + 'cloned_from': (WorkflowTaskDefinitionRelationship,), # noqa: E501 'implemented_tasks': ([WorkflowTaskDefinitionRelationship], none_type,), # noqa: E501 'interface_task': (WorkflowTaskDefinitionRelationship,), # noqa: E501 'task_metadata': (WorkflowTaskMetadataRelationship,), # noqa: E501 @@ -154,6 +155,7 @@ def discriminator(): 'secure_prop_access': 'SecurePropAccess', # noqa: E501 'version': 'Version', # noqa: E501 'catalog': 'Catalog', # noqa: E501 + 'cloned_from': 'ClonedFrom', # noqa: E501 'implemented_tasks': 'ImplementedTasks', # noqa: E501 'interface_task': 'InterfaceTask', # noqa: E501 'task_metadata': 'TaskMetadata', # noqa: E501 @@ -212,7 +214,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 default_version (bool): When true this will be the task version that is used when a specific task definition version is not specified. The very first task definition created with a name will be set as the default version, after that user can explicitly set any version of the task definition as the default version.. [optional] # noqa: E501 description (str): A user friendly description about task on what operations are done as part of the task execution and any other specific information about task input and output.. [optional] # noqa: E501 internal_properties (WorkflowInternalProperties): [optional] # noqa: E501 - label (str): A user friendly short name to identify the task definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_).. [optional] # noqa: E501 + label (str): A user friendly short name to identify the task definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_) and must be at least 2 characters.. [optional] # noqa: E501 license_entitlement (str): License entitlement required to run this task. It is determined by license requirement of features. * `Base` - Base as a License type. It is default license type. * `Essential` - Essential as a License type. * `Standard` - Standard as a License type. * `Advantage` - Advantage as a License type. * `Premier` - Premier as a License type. * `IWO-Essential` - IWO-Essential as a License type. * `IWO-Advantage` - IWO-Advantage as a License type. * `IWO-Premier` - IWO-Premier as a License type.. [optional] if omitted the server will use the default value of "Base" # noqa: E501 name (str): The name of the task definition. The name should follow this convention Verb or Action is a required portion of the name and this must be part of the pre-approved verb list. Category is an optional field and this will refer to the broad category of the task referring to the type of resource or endpoint. If there is no specific category then use \"Generic\" if required. Vendor is an optional field and this will refer to the specific vendor this task applies to. If the task is generic and not tied to a vendor, then do not specify anything. Product is an optional field, this will contain the vendor product and model when desired. Noun or object is a required field and this will contain the noun or object on which the action is being performed. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), or an underscore (_). Examples SendEmail - This is a task in Generic category for sending email. NewStorageVolume - This is a vendor agnostic task under Storage device category for creating a new volume.. [optional] # noqa: E501 properties (WorkflowProperties): [optional] # noqa: E501 @@ -220,6 +222,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 secure_prop_access (bool): If set to true, the task requires access to secure properties and uses an encryption token associated with a workflow moid to encrypt or decrypt the secure properties.. [optional] # noqa: E501 version (int): The version of the task definition so we can support multiple versions of a task definition.. [optional] if omitted the server will use the default value of 1 # noqa: E501 catalog (WorkflowCatalogRelationship): [optional] # noqa: E501 + cloned_from (WorkflowTaskDefinitionRelationship): [optional] # noqa: E501 implemented_tasks ([WorkflowTaskDefinitionRelationship], none_type): An array of relationships to workflowTaskDefinition resources.. [optional] # noqa: E501 interface_task (WorkflowTaskDefinitionRelationship): [optional] # noqa: E501 task_metadata (WorkflowTaskMetadataRelationship): [optional] # noqa: E501 diff --git a/intersight/model/workflow_task_definition_list.py b/intersight/model/workflow_task_definition_list.py index 5208373720..b443f13355 100644 --- a/intersight/model/workflow_task_definition_list.py +++ b/intersight/model/workflow_task_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/workflow_task_definition_list_all_of.py b/intersight/model/workflow_task_definition_list_all_of.py index 5f957a2145..c20dd5dbbd 100644 --- a/intersight/model/workflow_task_definition_list_all_of.py +++ b/intersight/model/workflow_task_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/workflow_task_definition_relationship.py b/intersight/model/workflow_task_definition_relationship.py index 15993003e2..fdccedb436 100644 --- a/intersight/model/workflow_task_definition_relationship.py +++ b/intersight/model/workflow_task_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 """ @@ -92,6 +92,8 @@ class WorkflowTaskDefinitionRelationship(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 WorkflowTaskDefinitionRelationship(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 WorkflowTaskDefinitionRelationship(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 WorkflowTaskDefinitionRelationship(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 WorkflowTaskDefinitionRelationship(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 WorkflowTaskDefinitionRelationship(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 WorkflowTaskDefinitionRelationship(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 WorkflowTaskDefinitionRelationship(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 WorkflowTaskDefinitionRelationship(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 WorkflowTaskDefinitionRelationship(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", }, } @@ -904,6 +917,7 @@ def openapi_types(): 'secure_prop_access': (bool,), # noqa: E501 'version': (int,), # noqa: E501 'catalog': (WorkflowCatalogRelationship,), # noqa: E501 + 'cloned_from': (WorkflowTaskDefinitionRelationship,), # noqa: E501 'implemented_tasks': ([WorkflowTaskDefinitionRelationship], none_type,), # noqa: E501 'interface_task': (WorkflowTaskDefinitionRelationship,), # noqa: E501 'task_metadata': (WorkflowTaskMetadataRelationship,), # noqa: E501 @@ -949,6 +963,7 @@ def discriminator(): 'secure_prop_access': 'SecurePropAccess', # noqa: E501 'version': 'Version', # noqa: E501 'catalog': 'Catalog', # noqa: E501 + 'cloned_from': 'ClonedFrom', # noqa: E501 'implemented_tasks': 'ImplementedTasks', # noqa: E501 'interface_task': 'InterfaceTask', # noqa: E501 'task_metadata': 'TaskMetadata', # noqa: E501 @@ -1023,7 +1038,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 default_version (bool): When true this will be the task version that is used when a specific task definition version is not specified. The very first task definition created with a name will be set as the default version, after that user can explicitly set any version of the task definition as the default version.. [optional] # noqa: E501 description (str): A user friendly description about task on what operations are done as part of the task execution and any other specific information about task input and output.. [optional] # noqa: E501 internal_properties (WorkflowInternalProperties): [optional] # noqa: E501 - label (str): A user friendly short name to identify the task definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_).. [optional] # noqa: E501 + label (str): A user friendly short name to identify the task definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), forward slash (/), or an underscore (_) and must be at least 2 characters.. [optional] # noqa: E501 license_entitlement (str): License entitlement required to run this task. It is determined by license requirement of features. * `Base` - Base as a License type. It is default license type. * `Essential` - Essential as a License type. * `Standard` - Standard as a License type. * `Advantage` - Advantage as a License type. * `Premier` - Premier as a License type. * `IWO-Essential` - IWO-Essential as a License type. * `IWO-Advantage` - IWO-Advantage as a License type. * `IWO-Premier` - IWO-Premier as a License type.. [optional] if omitted the server will use the default value of "Base" # noqa: E501 name (str): The name of the task definition. The name should follow this convention Verb or Action is a required portion of the name and this must be part of the pre-approved verb list. Category is an optional field and this will refer to the broad category of the task referring to the type of resource or endpoint. If there is no specific category then use \"Generic\" if required. Vendor is an optional field and this will refer to the specific vendor this task applies to. If the task is generic and not tied to a vendor, then do not specify anything. Product is an optional field, this will contain the vendor product and model when desired. Noun or object is a required field and this will contain the noun or object on which the action is being performed. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), or an underscore (_). Examples SendEmail - This is a task in Generic category for sending email. NewStorageVolume - This is a vendor agnostic task under Storage device category for creating a new volume.. [optional] # noqa: E501 properties (WorkflowProperties): [optional] # noqa: E501 @@ -1031,6 +1046,7 @@ def __init__(self, *args, **kwargs): # noqa: E501 secure_prop_access (bool): If set to true, the task requires access to secure properties and uses an encryption token associated with a workflow moid to encrypt or decrypt the secure properties.. [optional] # noqa: E501 version (int): The version of the task definition so we can support multiple versions of a task definition.. [optional] if omitted the server will use the default value of 1 # noqa: E501 catalog (WorkflowCatalogRelationship): [optional] # noqa: E501 + cloned_from (WorkflowTaskDefinitionRelationship): [optional] # noqa: E501 implemented_tasks ([WorkflowTaskDefinitionRelationship], none_type): An array of relationships to workflowTaskDefinition resources.. [optional] # noqa: E501 interface_task (WorkflowTaskDefinitionRelationship): [optional] # noqa: E501 task_metadata (WorkflowTaskMetadataRelationship): [optional] # noqa: E501 diff --git a/intersight/model/workflow_task_definition_response.py b/intersight/model/workflow_task_definition_response.py index f0c9d3a039..ff00640517 100644 --- a/intersight/model/workflow_task_definition_response.py +++ b/intersight/model/workflow_task_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/workflow_task_info.py b/intersight/model/workflow_task_info.py index 82018cb662..b3769e2ad2 100644 --- a/intersight/model/workflow_task_info.py +++ b/intersight/model/workflow_task_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/workflow_task_info_all_of.py b/intersight/model/workflow_task_info_all_of.py index 20fc4412e8..ba90ad5522 100644 --- a/intersight/model/workflow_task_info_all_of.py +++ b/intersight/model/workflow_task_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/workflow_task_info_list.py b/intersight/model/workflow_task_info_list.py index b8ae537cf1..361fa934ea 100644 --- a/intersight/model/workflow_task_info_list.py +++ b/intersight/model/workflow_task_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/workflow_task_info_list_all_of.py b/intersight/model/workflow_task_info_list_all_of.py index 84487512a3..942484f9e5 100644 --- a/intersight/model/workflow_task_info_list_all_of.py +++ b/intersight/model/workflow_task_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/workflow_task_info_relationship.py b/intersight/model/workflow_task_info_relationship.py index c69651e626..bfc161b53c 100644 --- a/intersight/model/workflow_task_info_relationship.py +++ b/intersight/model/workflow_task_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 """ @@ -80,6 +80,8 @@ class WorkflowTaskInfoRelationship(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 WorkflowTaskInfoRelationship(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 WorkflowTaskInfoRelationship(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 WorkflowTaskInfoRelationship(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 WorkflowTaskInfoRelationship(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 WorkflowTaskInfoRelationship(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 WorkflowTaskInfoRelationship(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 WorkflowTaskInfoRelationship(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 WorkflowTaskInfoRelationship(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 WorkflowTaskInfoRelationship(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/workflow_task_info_response.py b/intersight/model/workflow_task_info_response.py index ee4eb85169..14ec7aeaf1 100644 --- a/intersight/model/workflow_task_info_response.py +++ b/intersight/model/workflow_task_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/workflow_task_metadata.py b/intersight/model/workflow_task_metadata.py index 5b5f11f575..17e5c8c3c7 100644 --- a/intersight/model/workflow_task_metadata.py +++ b/intersight/model/workflow_task_metadata.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_task_metadata_all_of.py b/intersight/model/workflow_task_metadata_all_of.py index 0b118a7c16..ad93dfdeb3 100644 --- a/intersight/model/workflow_task_metadata_all_of.py +++ b/intersight/model/workflow_task_metadata_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_task_metadata_list.py b/intersight/model/workflow_task_metadata_list.py index 994e165458..56759411ae 100644 --- a/intersight/model/workflow_task_metadata_list.py +++ b/intersight/model/workflow_task_metadata_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/workflow_task_metadata_list_all_of.py b/intersight/model/workflow_task_metadata_list_all_of.py index 20e2083cd3..71883faefd 100644 --- a/intersight/model/workflow_task_metadata_list_all_of.py +++ b/intersight/model/workflow_task_metadata_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/workflow_task_metadata_relationship.py b/intersight/model/workflow_task_metadata_relationship.py index dc47aed5ae..631c993616 100644 --- a/intersight/model/workflow_task_metadata_relationship.py +++ b/intersight/model/workflow_task_metadata_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 WorkflowTaskMetadataRelationship(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 WorkflowTaskMetadataRelationship(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 WorkflowTaskMetadataRelationship(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 WorkflowTaskMetadataRelationship(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 WorkflowTaskMetadataRelationship(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 WorkflowTaskMetadataRelationship(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 WorkflowTaskMetadataRelationship(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 WorkflowTaskMetadataRelationship(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 WorkflowTaskMetadataRelationship(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 WorkflowTaskMetadataRelationship(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/workflow_task_metadata_response.py b/intersight/model/workflow_task_metadata_response.py index e3c3d7aa23..ce42a8e0ff 100644 --- a/intersight/model/workflow_task_metadata_response.py +++ b/intersight/model/workflow_task_metadata_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/workflow_task_notification.py b/intersight/model/workflow_task_notification.py new file mode 100644 index 0000000000..dc5347b089 --- /dev/null +++ b/intersight/model/workflow_task_notification.py @@ -0,0 +1,343 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.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.workflow_task_notification_all_of import WorkflowTaskNotificationAllOf + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMo'] = MoBaseMo + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['WorkflowTaskNotificationAllOf'] = WorkflowTaskNotificationAllOf + + +class WorkflowTaskNotification(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',): { + 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification", + }, + ('object_type',): { + 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification", + }, + } + + 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 + 'correlation_id': (str,), # noqa: E501 + 'end_time': (str,), # noqa: E501 + 'input': (str,), # noqa: E501 + 'output': (str,), # noqa: E501 + 'reason_for_incompletion': (str,), # noqa: E501 + 'reference_task_name': (str,), # noqa: E501 + 'retry_count': (float,), # noqa: E501 + 'scheduled_time': (str,), # noqa: E501 + 'start_time': (str,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'task_def_name': (str,), # noqa: E501 + 'task_description': (str,), # noqa: E501 + 'task_id': (str,), # noqa: E501 + 'task_type': (str,), # noqa: E501 + 'update_time': (str,), # noqa: E501 + 'workflow_id': (str,), # noqa: E501 + 'workflow_task_type': (str,), # noqa: E501 + 'workflow_type': (str,), # 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 + 'correlation_id': 'CorrelationId', # noqa: E501 + 'end_time': 'EndTime', # noqa: E501 + 'input': 'Input', # noqa: E501 + 'output': 'Output', # noqa: E501 + 'reason_for_incompletion': 'ReasonForIncompletion', # noqa: E501 + 'reference_task_name': 'ReferenceTaskName', # noqa: E501 + 'retry_count': 'RetryCount', # noqa: E501 + 'scheduled_time': 'ScheduledTime', # noqa: E501 + 'start_time': 'StartTime', # noqa: E501 + 'status': 'Status', # noqa: E501 + 'task_def_name': 'TaskDefName', # noqa: E501 + 'task_description': 'TaskDescription', # noqa: E501 + 'task_id': 'TaskId', # noqa: E501 + 'task_type': 'TaskType', # noqa: E501 + 'update_time': 'UpdateTime', # noqa: E501 + 'workflow_id': 'WorkflowId', # noqa: E501 + 'workflow_task_type': 'WorkflowTaskType', # noqa: E501 + 'workflow_type': 'WorkflowType', # 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 + """WorkflowTaskNotification - 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 "workflow.TaskNotification", must be one of ["workflow.TaskNotification", ] # 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 "workflow.TaskNotification", must be one of ["workflow.TaskNotification", ] # 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,) + correlation_id (str): The correlation id of the scheduled task.. [optional] # noqa: E501 + end_time (str): The end time of the scheduled task.. [optional] # noqa: E501 + input (str): The input of the scheduled task.. [optional] # noqa: E501 + output (str): The output of the scheduled task.. [optional] # noqa: E501 + reason_for_incompletion (str): The reason for incompletion status of the task.. [optional] # noqa: E501 + reference_task_name (str): The task reference name of the scheduled task.. [optional] # noqa: E501 + retry_count (float): The number of times the task retries on failure.. [optional] # noqa: E501 + scheduled_time (str): The scheduled time of the task.. [optional] # noqa: E501 + start_time (str): The start time of the scheduled task.. [optional] # noqa: E501 + status (str): The status of the scheduled task.. [optional] # noqa: E501 + task_def_name (str): The definition of the task explains about the task.. [optional] # noqa: E501 + task_description (str): The description of the task explains about the task.. [optional] # noqa: E501 + task_id (str): Unique id of the scheduled task.. [optional] # noqa: E501 + task_type (str): The type of the scheduled task.. [optional] # noqa: E501 + update_time (str): The update time of the scheduled task.. [optional] # noqa: E501 + workflow_id (str): The unique id of the running workflow containing this scheduled task.. [optional] # noqa: E501 + workflow_task_type (str): The type of the workflow task.. [optional] # noqa: E501 + workflow_type (str): The type of workflow containing this scheduled task.. [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', "workflow.TaskNotification") + object_type = kwargs.get('object_type', "workflow.TaskNotification") + _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': [ + MoBaseMo, + WorkflowTaskNotificationAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/workflow_task_notification_all_of.py b/intersight/model/workflow_task_notification_all_of.py new file mode 100644 index 0000000000..0d3f347c5a --- /dev/null +++ b/intersight/model/workflow_task_notification_all_of.py @@ -0,0 +1,236 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 WorkflowTaskNotificationAllOf(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',): { + 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification", + }, + ('object_type',): { + 'WORKFLOW.TASKNOTIFICATION': "workflow.TaskNotification", + }, + } + + 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 + 'correlation_id': (str,), # noqa: E501 + 'end_time': (str,), # noqa: E501 + 'input': (str,), # noqa: E501 + 'output': (str,), # noqa: E501 + 'reason_for_incompletion': (str,), # noqa: E501 + 'reference_task_name': (str,), # noqa: E501 + 'retry_count': (float,), # noqa: E501 + 'scheduled_time': (str,), # noqa: E501 + 'start_time': (str,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'task_def_name': (str,), # noqa: E501 + 'task_description': (str,), # noqa: E501 + 'task_id': (str,), # noqa: E501 + 'task_type': (str,), # noqa: E501 + 'update_time': (str,), # noqa: E501 + 'workflow_id': (str,), # noqa: E501 + 'workflow_task_type': (str,), # noqa: E501 + 'workflow_type': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'correlation_id': 'CorrelationId', # noqa: E501 + 'end_time': 'EndTime', # noqa: E501 + 'input': 'Input', # noqa: E501 + 'output': 'Output', # noqa: E501 + 'reason_for_incompletion': 'ReasonForIncompletion', # noqa: E501 + 'reference_task_name': 'ReferenceTaskName', # noqa: E501 + 'retry_count': 'RetryCount', # noqa: E501 + 'scheduled_time': 'ScheduledTime', # noqa: E501 + 'start_time': 'StartTime', # noqa: E501 + 'status': 'Status', # noqa: E501 + 'task_def_name': 'TaskDefName', # noqa: E501 + 'task_description': 'TaskDescription', # noqa: E501 + 'task_id': 'TaskId', # noqa: E501 + 'task_type': 'TaskType', # noqa: E501 + 'update_time': 'UpdateTime', # noqa: E501 + 'workflow_id': 'WorkflowId', # noqa: E501 + 'workflow_task_type': 'WorkflowTaskType', # noqa: E501 + 'workflow_type': 'WorkflowType', # 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 + """WorkflowTaskNotificationAllOf - 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 "workflow.TaskNotification", must be one of ["workflow.TaskNotification", ] # 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 "workflow.TaskNotification", must be one of ["workflow.TaskNotification", ] # 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,) + correlation_id (str): The correlation id of the scheduled task.. [optional] # noqa: E501 + end_time (str): The end time of the scheduled task.. [optional] # noqa: E501 + input (str): The input of the scheduled task.. [optional] # noqa: E501 + output (str): The output of the scheduled task.. [optional] # noqa: E501 + reason_for_incompletion (str): The reason for incompletion status of the task.. [optional] # noqa: E501 + reference_task_name (str): The task reference name of the scheduled task.. [optional] # noqa: E501 + retry_count (float): The number of times the task retries on failure.. [optional] # noqa: E501 + scheduled_time (str): The scheduled time of the task.. [optional] # noqa: E501 + start_time (str): The start time of the scheduled task.. [optional] # noqa: E501 + status (str): The status of the scheduled task.. [optional] # noqa: E501 + task_def_name (str): The definition of the task explains about the task.. [optional] # noqa: E501 + task_description (str): The description of the task explains about the task.. [optional] # noqa: E501 + task_id (str): Unique id of the scheduled task.. [optional] # noqa: E501 + task_type (str): The type of the scheduled task.. [optional] # noqa: E501 + update_time (str): The update time of the scheduled task.. [optional] # noqa: E501 + workflow_id (str): The unique id of the running workflow containing this scheduled task.. [optional] # noqa: E501 + workflow_task_type (str): The type of the workflow task.. [optional] # noqa: E501 + workflow_type (str): The type of workflow containing this scheduled task.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "workflow.TaskNotification") + object_type = kwargs.get('object_type', "workflow.TaskNotification") + _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/workflow_task_retry_info.py b/intersight/model/workflow_task_retry_info.py index a4ea697bc3..cd649ee112 100644 --- a/intersight/model/workflow_task_retry_info.py +++ b/intersight/model/workflow_task_retry_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/workflow_task_retry_info_all_of.py b/intersight/model/workflow_task_retry_info_all_of.py index b750fc2526..7f816b2013 100644 --- a/intersight/model/workflow_task_retry_info_all_of.py +++ b/intersight/model/workflow_task_retry_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/workflow_template_evaluation.py b/intersight/model/workflow_template_evaluation.py index 0816da30e6..e685a59531 100644 --- a/intersight/model/workflow_template_evaluation.py +++ b/intersight/model/workflow_template_evaluation.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_template_evaluation_all_of.py b/intersight/model/workflow_template_evaluation_all_of.py index c16fc5e720..5eaa8c9fd8 100644 --- a/intersight/model/workflow_template_evaluation_all_of.py +++ b/intersight/model/workflow_template_evaluation_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_template_function_meta.py b/intersight/model/workflow_template_function_meta.py index 90e6fc23e6..727cc369fc 100644 --- a/intersight/model/workflow_template_function_meta.py +++ b/intersight/model/workflow_template_function_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/workflow_template_function_meta_all_of.py b/intersight/model/workflow_template_function_meta_all_of.py index 932a157771..7fa3093ade 100644 --- a/intersight/model/workflow_template_function_meta_all_of.py +++ b/intersight/model/workflow_template_function_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/workflow_template_function_meta_list.py b/intersight/model/workflow_template_function_meta_list.py index f6ef936146..af1585af6e 100644 --- a/intersight/model/workflow_template_function_meta_list.py +++ b/intersight/model/workflow_template_function_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/workflow_template_function_meta_list_all_of.py b/intersight/model/workflow_template_function_meta_list_all_of.py index f5e49f9415..d2883d2cf6 100644 --- a/intersight/model/workflow_template_function_meta_list_all_of.py +++ b/intersight/model/workflow_template_function_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/workflow_template_function_meta_response.py b/intersight/model/workflow_template_function_meta_response.py index 0ae0c71dd6..58e12c2162 100644 --- a/intersight/model/workflow_template_function_meta_response.py +++ b/intersight/model/workflow_template_function_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/workflow_ui_input_filter.py b/intersight/model/workflow_ui_input_filter.py index f6823d9516..3402818d83 100644 --- a/intersight/model/workflow_ui_input_filter.py +++ b/intersight/model/workflow_ui_input_filter.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_ui_input_filter_all_of.py b/intersight/model/workflow_ui_input_filter_all_of.py index 386cf043fb..81d9b5521d 100644 --- a/intersight/model/workflow_ui_input_filter_all_of.py +++ b/intersight/model/workflow_ui_input_filter_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_validation_error.py b/intersight/model/workflow_validation_error.py index e3e2d36e3b..18cac857cd 100644 --- a/intersight/model/workflow_validation_error.py +++ b/intersight/model/workflow_validation_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/workflow_validation_error_all_of.py b/intersight/model/workflow_validation_error_all_of.py index 8afc0221e0..d36938d401 100644 --- a/intersight/model/workflow_validation_error_all_of.py +++ b/intersight/model/workflow_validation_error_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_validation_information.py b/intersight/model/workflow_validation_information.py index 9bfae33606..b038024c05 100644 --- a/intersight/model/workflow_validation_information.py +++ b/intersight/model/workflow_validation_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/workflow_validation_information_all_of.py b/intersight/model/workflow_validation_information_all_of.py index 2b9937b222..7476c19fce 100644 --- a/intersight/model/workflow_validation_information_all_of.py +++ b/intersight/model/workflow_validation_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/workflow_wait_task.py b/intersight/model/workflow_wait_task.py index b521a300e7..6e716f22a6 100644 --- a/intersight/model/workflow_wait_task.py +++ b/intersight/model/workflow_wait_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_wait_task_all_of.py b/intersight/model/workflow_wait_task_all_of.py index 5674fadd7a..f72f37852e 100644 --- a/intersight/model/workflow_wait_task_all_of.py +++ b/intersight/model/workflow_wait_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_wait_task_prompt.py b/intersight/model/workflow_wait_task_prompt.py index a8778910df..5a43fbdb6f 100644 --- a/intersight/model/workflow_wait_task_prompt.py +++ b/intersight/model/workflow_wait_task_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/workflow_wait_task_prompt_all_of.py b/intersight/model/workflow_wait_task_prompt_all_of.py index 37104ab8b3..23b6c61047 100644 --- a/intersight/model/workflow_wait_task_prompt_all_of.py +++ b/intersight/model/workflow_wait_task_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/workflow_web_api.py b/intersight/model/workflow_web_api.py index 35d4945b24..8f720364d9 100644 --- a/intersight/model/workflow_web_api.py +++ b/intersight/model/workflow_web_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/model/workflow_web_api_all_of.py b/intersight/model/workflow_web_api_all_of.py index 5a50edd340..346d2eff52 100644 --- a/intersight/model/workflow_web_api_all_of.py +++ b/intersight/model/workflow_web_api_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_worker_task.py b/intersight/model/workflow_worker_task.py index dccea45d39..65ffe1df8f 100644 --- a/intersight/model/workflow_worker_task.py +++ b/intersight/model/workflow_worker_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_worker_task_all_of.py b/intersight/model/workflow_worker_task_all_of.py index f514b81041..3117cf341c 100644 --- a/intersight/model/workflow_worker_task_all_of.py +++ b/intersight/model/workflow_worker_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_ctx.py b/intersight/model/workflow_workflow_ctx.py index bcf770a166..36d0afa9e1 100644 --- a/intersight/model/workflow_workflow_ctx.py +++ b/intersight/model/workflow_workflow_ctx.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_ctx_all_of.py b/intersight/model/workflow_workflow_ctx_all_of.py index 6ae235f348..d27502b81f 100644 --- a/intersight/model/workflow_workflow_ctx_all_of.py +++ b/intersight/model/workflow_workflow_ctx_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_definition.py b/intersight/model/workflow_workflow_definition.py index 3a9ad58b34..0ccc3cdbcf 100644 --- a/intersight/model/workflow_workflow_definition.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_definition_all_of.py b/intersight/model/workflow_workflow_definition_all_of.py index 0d2acf74a9..51a6db70f8 100644 --- a/intersight/model/workflow_workflow_definition_all_of.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_definition_list.py b/intersight/model/workflow_workflow_definition_list.py index 2580d561b9..da5fb1ad98 100644 --- a/intersight/model/workflow_workflow_definition_list.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_definition_list_all_of.py b/intersight/model/workflow_workflow_definition_list_all_of.py index 1ad4272956..71e75bdf5d 100644 --- a/intersight/model/workflow_workflow_definition_list_all_of.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_definition_relationship.py b/intersight/model/workflow_workflow_definition_relationship.py index 30d0cfd020..0f11e61106 100644 --- a/intersight/model/workflow_workflow_definition_relationship.py +++ b/intersight/model/workflow_workflow_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 """ @@ -98,6 +98,8 @@ class WorkflowWorkflowDefinitionRelationship(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 WorkflowWorkflowDefinitionRelationship(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 WorkflowWorkflowDefinitionRelationship(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 WorkflowWorkflowDefinitionRelationship(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 WorkflowWorkflowDefinitionRelationship(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 WorkflowWorkflowDefinitionRelationship(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 WorkflowWorkflowDefinitionRelationship(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 WorkflowWorkflowDefinitionRelationship(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 WorkflowWorkflowDefinitionRelationship(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 WorkflowWorkflowDefinitionRelationship(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/workflow_workflow_definition_response.py b/intersight/model/workflow_workflow_definition_response.py index a5eed04fca..eed734182b 100644 --- a/intersight/model/workflow_workflow_definition_response.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_engine_properties.py b/intersight/model/workflow_workflow_engine_properties.py index 47b17fd0c2..41f7655e36 100644 --- a/intersight/model/workflow_workflow_engine_properties.py +++ b/intersight/model/workflow_workflow_engine_properties.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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 WorkflowWorkflowEngineProperties(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/workflow_workflow_info.py b/intersight/model/workflow_workflow_info.py index 8ebc43de74..1afe13270d 100644 --- a/intersight/model/workflow_workflow_info.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_info_all_of.py b/intersight/model/workflow_workflow_info_all_of.py index ac493030b3..ad6354f49e 100644 --- a/intersight/model/workflow_workflow_info_all_of.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_info_list.py b/intersight/model/workflow_workflow_info_list.py index 83f36a7d96..9394acebc1 100644 --- a/intersight/model/workflow_workflow_info_list.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_info_list_all_of.py b/intersight/model/workflow_workflow_info_list_all_of.py index 63bfc72d1d..b66b7ec9e3 100644 --- a/intersight/model/workflow_workflow_info_list_all_of.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_info_properties.py b/intersight/model/workflow_workflow_info_properties.py index 6765381c28..cc8652f5f2 100644 --- a/intersight/model/workflow_workflow_info_properties.py +++ b/intersight/model/workflow_workflow_info_properties.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_info_properties_all_of.py b/intersight/model/workflow_workflow_info_properties_all_of.py index 010093767a..e89d4950f2 100644 --- a/intersight/model/workflow_workflow_info_properties_all_of.py +++ b/intersight/model/workflow_workflow_info_properties_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_info_relationship.py b/intersight/model/workflow_workflow_info_relationship.py index dfb80bfe2d..218bf1e40e 100644 --- a/intersight/model/workflow_workflow_info_relationship.py +++ b/intersight/model/workflow_workflow_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 """ @@ -129,6 +129,8 @@ class WorkflowWorkflowInfoRelationship(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", @@ -145,6 +147,7 @@ class WorkflowWorkflowInfoRelationship(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", @@ -193,9 +196,12 @@ class WorkflowWorkflowInfoRelationship(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", @@ -259,10 +265,6 @@ class WorkflowWorkflowInfoRelationship(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", @@ -271,6 +273,7 @@ class WorkflowWorkflowInfoRelationship(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", @@ -519,6 +522,7 @@ class WorkflowWorkflowInfoRelationship(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", @@ -688,6 +692,11 @@ class WorkflowWorkflowInfoRelationship(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", @@ -803,6 +812,7 @@ class WorkflowWorkflowInfoRelationship(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", @@ -834,6 +844,7 @@ class WorkflowWorkflowInfoRelationship(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", @@ -866,12 +877,14 @@ class WorkflowWorkflowInfoRelationship(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/workflow_workflow_info_response.py b/intersight/model/workflow_workflow_info_response.py index af9020fc04..4e0b616e72 100644 --- a/intersight/model/workflow_workflow_info_response.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_meta.py b/intersight/model/workflow_workflow_meta.py index 3ba7e56334..c5feb0a879 100644 --- a/intersight/model/workflow_workflow_meta.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_meta_all_of.py b/intersight/model/workflow_workflow_meta_all_of.py index acfc29ab0b..ff640365e9 100644 --- a/intersight/model/workflow_workflow_meta_all_of.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_meta_list.py b/intersight/model/workflow_workflow_meta_list.py index 5807435e6a..67cbbe085b 100644 --- a/intersight/model/workflow_workflow_meta_list.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_meta_list_all_of.py b/intersight/model/workflow_workflow_meta_list_all_of.py index d46dabdffa..5b0f7b6422 100644 --- a/intersight/model/workflow_workflow_meta_list_all_of.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_meta_response.py b/intersight/model/workflow_workflow_meta_response.py index a903f27c36..0e3045cdcd 100644 --- a/intersight/model/workflow_workflow_meta_response.py +++ b/intersight/model/workflow_workflow_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/workflow_workflow_metadata.py b/intersight/model/workflow_workflow_metadata.py index 9a471ca243..0685ac63fa 100644 --- a/intersight/model/workflow_workflow_metadata.py +++ b/intersight/model/workflow_workflow_metadata.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_metadata_all_of.py b/intersight/model/workflow_workflow_metadata_all_of.py index 0350cb5317..7a4afedcc0 100644 --- a/intersight/model/workflow_workflow_metadata_all_of.py +++ b/intersight/model/workflow_workflow_metadata_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_metadata_list.py b/intersight/model/workflow_workflow_metadata_list.py index fcef9e7aff..42c5491db2 100644 --- a/intersight/model/workflow_workflow_metadata_list.py +++ b/intersight/model/workflow_workflow_metadata_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/workflow_workflow_metadata_list_all_of.py b/intersight/model/workflow_workflow_metadata_list_all_of.py index 013ab513cb..05072273e8 100644 --- a/intersight/model/workflow_workflow_metadata_list_all_of.py +++ b/intersight/model/workflow_workflow_metadata_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/workflow_workflow_metadata_relationship.py b/intersight/model/workflow_workflow_metadata_relationship.py index c19f6570a8..0b3ce6e328 100644 --- a/intersight/model/workflow_workflow_metadata_relationship.py +++ b/intersight/model/workflow_workflow_metadata_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 WorkflowWorkflowMetadataRelationship(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 WorkflowWorkflowMetadataRelationship(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 WorkflowWorkflowMetadataRelationship(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 WorkflowWorkflowMetadataRelationship(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 WorkflowWorkflowMetadataRelationship(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 WorkflowWorkflowMetadataRelationship(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 WorkflowWorkflowMetadataRelationship(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 WorkflowWorkflowMetadataRelationship(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 WorkflowWorkflowMetadataRelationship(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 WorkflowWorkflowMetadataRelationship(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/workflow_workflow_metadata_response.py b/intersight/model/workflow_workflow_metadata_response.py index f9218f73a9..8e02871eb3 100644 --- a/intersight/model/workflow_workflow_metadata_response.py +++ b/intersight/model/workflow_workflow_metadata_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/workflow_workflow_notification.py b/intersight/model/workflow_workflow_notification.py new file mode 100644 index 0000000000..2e7a132ae8 --- /dev/null +++ b/intersight/model/workflow_workflow_notification.py @@ -0,0 +1,331 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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.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.workflow_workflow_notification_all_of import WorkflowWorkflowNotificationAllOf + globals()['DisplayNames'] = DisplayNames + globals()['MoBaseMo'] = MoBaseMo + globals()['MoBaseMoRelationship'] = MoBaseMoRelationship + globals()['MoTag'] = MoTag + globals()['MoVersionContext'] = MoVersionContext + globals()['WorkflowWorkflowNotificationAllOf'] = WorkflowWorkflowNotificationAllOf + + +class WorkflowWorkflowNotification(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',): { + 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification", + }, + ('object_type',): { + '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 + 'object_type': (str,), # noqa: E501 + 'correlation_id': (str,), # noqa: E501 + 'end_time': (str,), # noqa: E501 + 'event': (str,), # noqa: E501 + 'execution_time': (float,), # noqa: E501 + 'failed_reference_task_names': (str,), # noqa: E501 + 'input': (str,), # noqa: E501 + 'output': (str,), # noqa: E501 + 'reason_for_incompletion': (str,), # noqa: E501 + 'start_time': (str,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'update_time': (str,), # noqa: E501 + 'version': (int,), # noqa: E501 + 'workflow_id': (str,), # noqa: E501 + 'workflow_type': (str,), # 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 + 'correlation_id': 'CorrelationId', # noqa: E501 + 'end_time': 'EndTime', # noqa: E501 + 'event': 'Event', # noqa: E501 + 'execution_time': 'ExecutionTime', # noqa: E501 + 'failed_reference_task_names': 'FailedReferenceTaskNames', # noqa: E501 + 'input': 'Input', # noqa: E501 + 'output': 'Output', # noqa: E501 + 'reason_for_incompletion': 'ReasonForIncompletion', # noqa: E501 + 'start_time': 'StartTime', # noqa: E501 + 'status': 'Status', # noqa: E501 + 'update_time': 'UpdateTime', # noqa: E501 + 'version': 'Version', # noqa: E501 + 'workflow_id': 'WorkflowId', # noqa: E501 + 'workflow_type': 'WorkflowType', # 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 + """WorkflowWorkflowNotification - 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 "workflow.WorkflowNotification", must be one of ["workflow.WorkflowNotification", ] # 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 "workflow.WorkflowNotification", must be one of ["workflow.WorkflowNotification", ] # 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,) + correlation_id (str): The correlationId of the workflow.. [optional] # noqa: E501 + end_time (str): The end time of the workflow.. [optional] # noqa: E501 + event (str): The event of the workflow.. [optional] # noqa: E501 + execution_time (float): The execution time of the workflow.. [optional] # noqa: E501 + failed_reference_task_names (str): The reference task names of the failed tasks.. [optional] # noqa: E501 + input (str): The input of the workflow.. [optional] # noqa: E501 + output (str): The output of the workflow.. [optional] # noqa: E501 + reason_for_incompletion (str): The reason for incompletion status of the workflow.. [optional] # noqa: E501 + start_time (str): The start time of the workflow.. [optional] # noqa: E501 + status (str): The final status of the workflow.. [optional] # noqa: E501 + update_time (str): The last update time of the workflow.. [optional] # noqa: E501 + version (int): The version of the workflow.. [optional] # noqa: E501 + workflow_id (str): The unique id of the workflow.. [optional] # noqa: E501 + workflow_type (str): The type of the workflow.. [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', "workflow.WorkflowNotification") + object_type = kwargs.get('object_type', "workflow.WorkflowNotification") + _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': [ + MoBaseMo, + WorkflowWorkflowNotificationAllOf, + ], + 'oneOf': [ + ], + } diff --git a/intersight/model/workflow_workflow_notification_all_of.py b/intersight/model/workflow_workflow_notification_all_of.py new file mode 100644 index 0000000000..e8d5164fcb --- /dev/null +++ b/intersight/model/workflow_workflow_notification_all_of.py @@ -0,0 +1,224 @@ +""" + Cisco Intersight + + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs 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 WorkflowWorkflowNotificationAllOf(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',): { + 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification", + }, + ('object_type',): { + 'WORKFLOW.WORKFLOWNOTIFICATION': "workflow.WorkflowNotification", + }, + } + + 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 + 'correlation_id': (str,), # noqa: E501 + 'end_time': (str,), # noqa: E501 + 'event': (str,), # noqa: E501 + 'execution_time': (float,), # noqa: E501 + 'failed_reference_task_names': (str,), # noqa: E501 + 'input': (str,), # noqa: E501 + 'output': (str,), # noqa: E501 + 'reason_for_incompletion': (str,), # noqa: E501 + 'start_time': (str,), # noqa: E501 + 'status': (str,), # noqa: E501 + 'update_time': (str,), # noqa: E501 + 'version': (int,), # noqa: E501 + 'workflow_id': (str,), # noqa: E501 + 'workflow_type': (str,), # noqa: E501 + } + + @cached_property + def discriminator(): + return None + + + attribute_map = { + 'class_id': 'ClassId', # noqa: E501 + 'object_type': 'ObjectType', # noqa: E501 + 'correlation_id': 'CorrelationId', # noqa: E501 + 'end_time': 'EndTime', # noqa: E501 + 'event': 'Event', # noqa: E501 + 'execution_time': 'ExecutionTime', # noqa: E501 + 'failed_reference_task_names': 'FailedReferenceTaskNames', # noqa: E501 + 'input': 'Input', # noqa: E501 + 'output': 'Output', # noqa: E501 + 'reason_for_incompletion': 'ReasonForIncompletion', # noqa: E501 + 'start_time': 'StartTime', # noqa: E501 + 'status': 'Status', # noqa: E501 + 'update_time': 'UpdateTime', # noqa: E501 + 'version': 'Version', # noqa: E501 + 'workflow_id': 'WorkflowId', # noqa: E501 + 'workflow_type': 'WorkflowType', # 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 + """WorkflowWorkflowNotificationAllOf - 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 "workflow.WorkflowNotification", must be one of ["workflow.WorkflowNotification", ] # 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 "workflow.WorkflowNotification", must be one of ["workflow.WorkflowNotification", ] # 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,) + correlation_id (str): The correlationId of the workflow.. [optional] # noqa: E501 + end_time (str): The end time of the workflow.. [optional] # noqa: E501 + event (str): The event of the workflow.. [optional] # noqa: E501 + execution_time (float): The execution time of the workflow.. [optional] # noqa: E501 + failed_reference_task_names (str): The reference task names of the failed tasks.. [optional] # noqa: E501 + input (str): The input of the workflow.. [optional] # noqa: E501 + output (str): The output of the workflow.. [optional] # noqa: E501 + reason_for_incompletion (str): The reason for incompletion status of the workflow.. [optional] # noqa: E501 + start_time (str): The start time of the workflow.. [optional] # noqa: E501 + status (str): The final status of the workflow.. [optional] # noqa: E501 + update_time (str): The last update time of the workflow.. [optional] # noqa: E501 + version (int): The version of the workflow.. [optional] # noqa: E501 + workflow_id (str): The unique id of the workflow.. [optional] # noqa: E501 + workflow_type (str): The type of the workflow.. [optional] # noqa: E501 + """ + + class_id = kwargs.get('class_id', "workflow.WorkflowNotification") + object_type = kwargs.get('object_type', "workflow.WorkflowNotification") + _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/workflow_workflow_properties.py b/intersight/model/workflow_workflow_properties.py index b18e294f79..5eb2baebd3 100644 --- a/intersight/model/workflow_workflow_properties.py +++ b/intersight/model/workflow_workflow_properties.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_properties_all_of.py b/intersight/model/workflow_workflow_properties_all_of.py index abdf1d89a2..05d1b095a1 100644 --- a/intersight/model/workflow_workflow_properties_all_of.py +++ b/intersight/model/workflow_workflow_properties_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_task.py b/intersight/model/workflow_workflow_task.py index 3eaf2c98e3..1f99f5abcf 100644 --- a/intersight/model/workflow_workflow_task.py +++ b/intersight/model/workflow_workflow_task.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_workflow_task_all_of.py b/intersight/model/workflow_workflow_task_all_of.py index 8f7c9e8c3c..cb6ad5f422 100644 --- a/intersight/model/workflow_workflow_task_all_of.py +++ b/intersight/model/workflow_workflow_task_all_of.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/model/workflow_xml_api.py b/intersight/model/workflow_xml_api.py index e3a8dc2c3d..73fc36338f 100644 --- a/intersight/model/workflow_xml_api.py +++ b/intersight/model/workflow_xml_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/model/x509_certificate.py b/intersight/model/x509_certificate.py index 8c29133d1e..e8cdc23d64 100644 --- a/intersight/model/x509_certificate.py +++ b/intersight/model/x509_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/x509_certificate_all_of.py b/intersight/model/x509_certificate_all_of.py index 1548b3399b..b1fd2839f4 100644 --- a/intersight/model/x509_certificate_all_of.py +++ b/intersight/model/x509_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_utils.py b/intersight/model_utils.py index d456afb371..459824fa2c 100644 --- a/intersight/model_utils.py +++ b/intersight/model_utils.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/models/__init__.py b/intersight/models/__init__.py index 5203f6118f..08681456c9 100644 --- a/intersight/models/__init__.py +++ b/intersight/models/__init__.py @@ -16,6 +16,16 @@ from intersight.model.aaa_audit_record_list import AaaAuditRecordList from intersight.model.aaa_audit_record_list_all_of import AaaAuditRecordListAllOf from intersight.model.aaa_audit_record_response import AaaAuditRecordResponse +from intersight.model.aaa_retention_config import AaaRetentionConfig +from intersight.model.aaa_retention_config_all_of import AaaRetentionConfigAllOf +from intersight.model.aaa_retention_config_list import AaaRetentionConfigList +from intersight.model.aaa_retention_config_list_all_of import AaaRetentionConfigListAllOf +from intersight.model.aaa_retention_config_response import AaaRetentionConfigResponse +from intersight.model.aaa_retention_policy import AaaRetentionPolicy +from intersight.model.aaa_retention_policy_all_of import AaaRetentionPolicyAllOf +from intersight.model.aaa_retention_policy_list import AaaRetentionPolicyList +from intersight.model.aaa_retention_policy_list_all_of import AaaRetentionPolicyListAllOf +from intersight.model.aaa_retention_policy_response import AaaRetentionPolicyResponse from intersight.model.access_address_type import AccessAddressType from intersight.model.access_address_type_all_of import AccessAddressTypeAllOf from intersight.model.access_policy import AccessPolicy @@ -122,6 +132,11 @@ from intersight.model.appliance_device_claim_list import ApplianceDeviceClaimList from intersight.model.appliance_device_claim_list_all_of import ApplianceDeviceClaimListAllOf 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_all_of import ApplianceDeviceUpgradePolicyAllOf +from intersight.model.appliance_device_upgrade_policy_list import ApplianceDeviceUpgradePolicyList +from intersight.model.appliance_device_upgrade_policy_list_all_of import ApplianceDeviceUpgradePolicyListAllOf +from intersight.model.appliance_device_upgrade_policy_response import ApplianceDeviceUpgradePolicyResponse from intersight.model.appliance_diag_setting import ApplianceDiagSetting from intersight.model.appliance_diag_setting_all_of import ApplianceDiagSettingAllOf from intersight.model.appliance_diag_setting_list import ApplianceDiagSettingList @@ -515,17 +530,42 @@ from intersight.model.boot_vmedia_device_response import BootVmediaDeviceResponse from intersight.model.bulk_api_result import BulkApiResult from intersight.model.bulk_api_result_all_of import BulkApiResultAllOf +from intersight.model.bulk_export import BulkExport +from intersight.model.bulk_export_all_of import BulkExportAllOf +from intersight.model.bulk_export_list import BulkExportList +from intersight.model.bulk_export_list_all_of import BulkExportListAllOf +from intersight.model.bulk_export_relationship import BulkExportRelationship +from intersight.model.bulk_export_response import BulkExportResponse +from intersight.model.bulk_exported_item import BulkExportedItem +from intersight.model.bulk_exported_item_all_of import BulkExportedItemAllOf +from intersight.model.bulk_exported_item_list import BulkExportedItemList +from intersight.model.bulk_exported_item_list_all_of import BulkExportedItemListAllOf +from intersight.model.bulk_exported_item_relationship import BulkExportedItemRelationship +from intersight.model.bulk_exported_item_response import BulkExportedItemResponse +from intersight.model.bulk_http_header import BulkHttpHeader +from intersight.model.bulk_http_header_all_of import BulkHttpHeaderAllOf from intersight.model.bulk_mo_cloner import BulkMoCloner from intersight.model.bulk_mo_cloner_all_of import BulkMoClonerAllOf from intersight.model.bulk_mo_merger import BulkMoMerger from intersight.model.bulk_mo_merger_all_of import BulkMoMergerAllOf from intersight.model.bulk_request import BulkRequest from intersight.model.bulk_request_all_of import BulkRequestAllOf +from intersight.model.bulk_request_list import BulkRequestList +from intersight.model.bulk_request_list_all_of import BulkRequestListAllOf +from intersight.model.bulk_request_relationship import BulkRequestRelationship +from intersight.model.bulk_request_response import BulkRequestResponse from intersight.model.bulk_rest_result import BulkRestResult from intersight.model.bulk_rest_result_all_of import BulkRestResultAllOf from intersight.model.bulk_rest_sub_request import BulkRestSubRequest from intersight.model.bulk_rest_sub_request_all_of import BulkRestSubRequestAllOf from intersight.model.bulk_sub_request import BulkSubRequest +from intersight.model.bulk_sub_request_all_of import BulkSubRequestAllOf +from intersight.model.bulk_sub_request_obj import BulkSubRequestObj +from intersight.model.bulk_sub_request_obj_all_of import BulkSubRequestObjAllOf +from intersight.model.bulk_sub_request_obj_list import BulkSubRequestObjList +from intersight.model.bulk_sub_request_obj_list_all_of import BulkSubRequestObjListAllOf +from intersight.model.bulk_sub_request_obj_relationship import BulkSubRequestObjRelationship +from intersight.model.bulk_sub_request_obj_response import BulkSubRequestObjResponse from intersight.model.capability_adapter_unit_descriptor import CapabilityAdapterUnitDescriptor from intersight.model.capability_adapter_unit_descriptor_all_of import CapabilityAdapterUnitDescriptorAllOf from intersight.model.capability_adapter_unit_descriptor_list import CapabilityAdapterUnitDescriptorList @@ -964,32 +1004,6 @@ from intersight.model.cond_hcl_status_list_all_of import CondHclStatusListAllOf from intersight.model.cond_hcl_status_relationship import CondHclStatusRelationship from intersight.model.cond_hcl_status_response import CondHclStatusResponse -from intersight.model.config_exported_item import ConfigExportedItem -from intersight.model.config_exported_item_all_of import ConfigExportedItemAllOf -from intersight.model.config_exported_item_list import ConfigExportedItemList -from intersight.model.config_exported_item_list_all_of import ConfigExportedItemListAllOf -from intersight.model.config_exported_item_relationship import ConfigExportedItemRelationship -from intersight.model.config_exported_item_response import ConfigExportedItemResponse -from intersight.model.config_exporter import ConfigExporter -from intersight.model.config_exporter_all_of import ConfigExporterAllOf -from intersight.model.config_exporter_list import ConfigExporterList -from intersight.model.config_exporter_list_all_of import ConfigExporterListAllOf -from intersight.model.config_exporter_relationship import ConfigExporterRelationship -from intersight.model.config_exporter_response import ConfigExporterResponse -from intersight.model.config_imported_item import ConfigImportedItem -from intersight.model.config_imported_item_all_of import ConfigImportedItemAllOf -from intersight.model.config_imported_item_list import ConfigImportedItemList -from intersight.model.config_imported_item_list_all_of import ConfigImportedItemListAllOf -from intersight.model.config_imported_item_relationship import ConfigImportedItemRelationship -from intersight.model.config_imported_item_response import ConfigImportedItemResponse -from intersight.model.config_importer import ConfigImporter -from intersight.model.config_importer_all_of import ConfigImporterAllOf -from intersight.model.config_importer_list import ConfigImporterList -from intersight.model.config_importer_list_all_of import ConfigImporterListAllOf -from intersight.model.config_importer_relationship import ConfigImporterRelationship -from intersight.model.config_importer_response import ConfigImporterResponse -from intersight.model.config_mo_ref import ConfigMoRef -from intersight.model.config_mo_ref_all_of import ConfigMoRefAllOf from intersight.model.connector_auth_message import ConnectorAuthMessage from intersight.model.connector_auth_message_all_of import ConnectorAuthMessageAllOf from intersight.model.connector_base_message import ConnectorBaseMessage @@ -1091,6 +1105,12 @@ from intersight.model.equipment_device_summary_list import EquipmentDeviceSummaryList from intersight.model.equipment_device_summary_list_all_of import EquipmentDeviceSummaryListAllOf from intersight.model.equipment_device_summary_response import EquipmentDeviceSummaryResponse +from intersight.model.equipment_expander_module import EquipmentExpanderModule +from intersight.model.equipment_expander_module_all_of import EquipmentExpanderModuleAllOf +from intersight.model.equipment_expander_module_list import EquipmentExpanderModuleList +from intersight.model.equipment_expander_module_list_all_of import EquipmentExpanderModuleListAllOf +from intersight.model.equipment_expander_module_relationship import EquipmentExpanderModuleRelationship +from intersight.model.equipment_expander_module_response import EquipmentExpanderModuleResponse from intersight.model.equipment_fan import EquipmentFan from intersight.model.equipment_fan_all_of import EquipmentFanAllOf from intersight.model.equipment_fan_control import EquipmentFanControl @@ -2736,6 +2756,13 @@ from intersight.model.kubernetes_addon_repository_list import KubernetesAddonRepositoryList from intersight.model.kubernetes_addon_repository_list_all_of import KubernetesAddonRepositoryListAllOf from intersight.model.kubernetes_addon_repository_response import KubernetesAddonRepositoryResponse +from intersight.model.kubernetes_baremetal_network_info import KubernetesBaremetalNetworkInfo +from intersight.model.kubernetes_baremetal_network_info_all_of import KubernetesBaremetalNetworkInfoAllOf +from intersight.model.kubernetes_baremetal_node_profile import KubernetesBaremetalNodeProfile +from intersight.model.kubernetes_baremetal_node_profile_all_of import KubernetesBaremetalNodeProfileAllOf +from intersight.model.kubernetes_baremetal_node_profile_list import KubernetesBaremetalNodeProfileList +from intersight.model.kubernetes_baremetal_node_profile_list_all_of import KubernetesBaremetalNodeProfileListAllOf +from intersight.model.kubernetes_baremetal_node_profile_response import KubernetesBaremetalNodeProfileResponse from intersight.model.kubernetes_base_infrastructure_provider import KubernetesBaseInfrastructureProvider from intersight.model.kubernetes_base_infrastructure_provider_all_of import KubernetesBaseInfrastructureProviderAllOf from intersight.model.kubernetes_base_infrastructure_provider_relationship import KubernetesBaseInfrastructureProviderRelationship @@ -2811,7 +2838,12 @@ from intersight.model.kubernetes_essential_addon_all_of import KubernetesEssentialAddonAllOf from intersight.model.kubernetes_esxi_virtual_machine_infra_config import KubernetesEsxiVirtualMachineInfraConfig from intersight.model.kubernetes_esxi_virtual_machine_infra_config_all_of import KubernetesEsxiVirtualMachineInfraConfigAllOf +from intersight.model.kubernetes_ethernet import KubernetesEthernet +from intersight.model.kubernetes_ethernet_all_of import KubernetesEthernetAllOf +from intersight.model.kubernetes_ethernet_matcher import KubernetesEthernetMatcher +from intersight.model.kubernetes_ethernet_matcher_all_of import KubernetesEthernetMatcherAllOf from intersight.model.kubernetes_hyper_flex_ap_virtual_machine_infra_config import KubernetesHyperFlexApVirtualMachineInfraConfig +from intersight.model.kubernetes_hyper_flex_ap_virtual_machine_infra_config_all_of import KubernetesHyperFlexApVirtualMachineInfraConfigAllOf from intersight.model.kubernetes_ingress import KubernetesIngress from intersight.model.kubernetes_ingress_all_of import KubernetesIngressAllOf from intersight.model.kubernetes_ingress_list import KubernetesIngressList @@ -2825,6 +2857,8 @@ from intersight.model.kubernetes_kubernetes_resource_all_of import KubernetesKubernetesResourceAllOf from intersight.model.kubernetes_load_balancer import KubernetesLoadBalancer from intersight.model.kubernetes_load_balancer_all_of import KubernetesLoadBalancerAllOf +from intersight.model.kubernetes_network_interface import KubernetesNetworkInterface +from intersight.model.kubernetes_network_interface_all_of import KubernetesNetworkInterfaceAllOf from intersight.model.kubernetes_network_policy import KubernetesNetworkPolicy from intersight.model.kubernetes_network_policy_all_of import KubernetesNetworkPolicyAllOf from intersight.model.kubernetes_network_policy_list import KubernetesNetworkPolicyList @@ -2859,6 +2893,8 @@ from intersight.model.kubernetes_node_status_all_of import KubernetesNodeStatusAllOf from intersight.model.kubernetes_object_meta import KubernetesObjectMeta from intersight.model.kubernetes_object_meta_all_of import KubernetesObjectMetaAllOf +from intersight.model.kubernetes_ovs_bond import KubernetesOvsBond +from intersight.model.kubernetes_ovs_bond_all_of import KubernetesOvsBondAllOf from intersight.model.kubernetes_pod import KubernetesPod from intersight.model.kubernetes_pod_all_of import KubernetesPodAllOf from intersight.model.kubernetes_pod_list import KubernetesPodList @@ -3119,6 +3155,8 @@ from intersight.model.meta_definition_response import MetaDefinitionResponse from intersight.model.meta_display_name_definition import MetaDisplayNameDefinition from intersight.model.meta_display_name_definition_all_of import MetaDisplayNameDefinitionAllOf +from intersight.model.meta_identity_definition import MetaIdentityDefinition +from intersight.model.meta_identity_definition_all_of import MetaIdentityDefinitionAllOf from intersight.model.meta_prop_definition import MetaPropDefinition from intersight.model.meta_prop_definition_all_of import MetaPropDefinitionAllOf from intersight.model.meta_relationship_definition import MetaRelationshipDefinition @@ -3894,6 +3932,42 @@ from intersight.model.resource_source_to_permission_resources_all_of import ResourceSourceToPermissionResourcesAllOf from intersight.model.resource_source_to_permission_resources_holder import ResourceSourceToPermissionResourcesHolder from intersight.model.resource_source_to_permission_resources_holder_all_of import ResourceSourceToPermissionResourcesHolderAllOf +from intersight.model.resourcepool_lease import ResourcepoolLease +from intersight.model.resourcepool_lease_all_of import ResourcepoolLeaseAllOf +from intersight.model.resourcepool_lease_list import ResourcepoolLeaseList +from intersight.model.resourcepool_lease_list_all_of import ResourcepoolLeaseListAllOf +from intersight.model.resourcepool_lease_parameters import ResourcepoolLeaseParameters +from intersight.model.resourcepool_lease_relationship import ResourcepoolLeaseRelationship +from intersight.model.resourcepool_lease_resource import ResourcepoolLeaseResource +from intersight.model.resourcepool_lease_resource_all_of import ResourcepoolLeaseResourceAllOf +from intersight.model.resourcepool_lease_resource_list import ResourcepoolLeaseResourceList +from intersight.model.resourcepool_lease_resource_list_all_of import ResourcepoolLeaseResourceListAllOf +from intersight.model.resourcepool_lease_resource_relationship import ResourcepoolLeaseResourceRelationship +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_all_of import ResourcepoolPoolAllOf +from intersight.model.resourcepool_pool_list import ResourcepoolPoolList +from intersight.model.resourcepool_pool_list_all_of import ResourcepoolPoolListAllOf +from intersight.model.resourcepool_pool_member import ResourcepoolPoolMember +from intersight.model.resourcepool_pool_member_all_of import ResourcepoolPoolMemberAllOf +from intersight.model.resourcepool_pool_member_list import ResourcepoolPoolMemberList +from intersight.model.resourcepool_pool_member_list_all_of import ResourcepoolPoolMemberListAllOf +from intersight.model.resourcepool_pool_member_relationship import ResourcepoolPoolMemberRelationship +from intersight.model.resourcepool_pool_member_response import ResourcepoolPoolMemberResponse +from intersight.model.resourcepool_pool_relationship import ResourcepoolPoolRelationship +from intersight.model.resourcepool_pool_response import ResourcepoolPoolResponse +from intersight.model.resourcepool_resource_pool_parameters import ResourcepoolResourcePoolParameters +from intersight.model.resourcepool_server_lease_parameters import ResourcepoolServerLeaseParameters +from intersight.model.resourcepool_server_lease_parameters_all_of import ResourcepoolServerLeaseParametersAllOf +from intersight.model.resourcepool_server_pool_parameters import ResourcepoolServerPoolParameters +from intersight.model.resourcepool_server_pool_parameters_all_of import ResourcepoolServerPoolParametersAllOf +from intersight.model.resourcepool_universe import ResourcepoolUniverse +from intersight.model.resourcepool_universe_all_of import ResourcepoolUniverseAllOf +from intersight.model.resourcepool_universe_list import ResourcepoolUniverseList +from intersight.model.resourcepool_universe_list_all_of import ResourcepoolUniverseListAllOf +from intersight.model.resourcepool_universe_relationship import ResourcepoolUniverseRelationship +from intersight.model.resourcepool_universe_response import ResourcepoolUniverseResponse from intersight.model.rproxy_reverse_proxy import RproxyReverseProxy from intersight.model.rproxy_reverse_proxy_all_of import RproxyReverseProxyAllOf from intersight.model.sdcard_diagnostics import SdcardDiagnostics @@ -3985,6 +4059,7 @@ from intersight.model.server_config_result_list_all_of import ServerConfigResultListAllOf from intersight.model.server_config_result_relationship import ServerConfigResultRelationship from intersight.model.server_config_result_response import ServerConfigResultResponse +from intersight.model.server_pending_workflow_trigger import ServerPendingWorkflowTrigger from intersight.model.server_profile import ServerProfile from intersight.model.server_profile_all_of import ServerProfileAllOf from intersight.model.server_profile_list import ServerProfileList @@ -4674,6 +4749,8 @@ from intersight.model.task_public_cloud_scoped_inventory_all_of import TaskPublicCloudScopedInventoryAllOf from intersight.model.task_pure_scoped_inventory import TaskPureScopedInventory from intersight.model.task_pure_scoped_inventory_all_of import TaskPureScopedInventoryAllOf +from intersight.model.task_server_scoped_inventory import TaskServerScopedInventory +from intersight.model.task_server_scoped_inventory_all_of import TaskServerScopedInventoryAllOf from intersight.model.techsupportmanagement_appliance_param import TechsupportmanagementApplianceParam from intersight.model.techsupportmanagement_appliance_param_all_of import TechsupportmanagementApplianceParamAllOf from intersight.model.techsupportmanagement_collection_control_policy import TechsupportmanagementCollectionControlPolicy @@ -4940,6 +5017,8 @@ from intersight.model.virtualization_base_virtual_machine import VirtualizationBaseVirtualMachine from intersight.model.virtualization_base_virtual_machine_all_of import VirtualizationBaseVirtualMachineAllOf from intersight.model.virtualization_base_virtual_machine_relationship import VirtualizationBaseVirtualMachineRelationship +from intersight.model.virtualization_base_virtual_machine_snapshot import VirtualizationBaseVirtualMachineSnapshot +from intersight.model.virtualization_base_virtual_machine_snapshot_all_of import VirtualizationBaseVirtualMachineSnapshotAllOf from intersight.model.virtualization_base_virtual_network import VirtualizationBaseVirtualNetwork from intersight.model.virtualization_base_virtual_network_interface import VirtualizationBaseVirtualNetworkInterface from intersight.model.virtualization_base_virtual_network_interface_all_of import VirtualizationBaseVirtualNetworkInterfaceAllOf @@ -5097,6 +5176,11 @@ from intersight.model.virtualization_vmware_virtual_machine_list_all_of import VirtualizationVmwareVirtualMachineListAllOf from intersight.model.virtualization_vmware_virtual_machine_relationship import VirtualizationVmwareVirtualMachineRelationship 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_all_of import VirtualizationVmwareVirtualMachineSnapshotAllOf +from intersight.model.virtualization_vmware_virtual_machine_snapshot_list import VirtualizationVmwareVirtualMachineSnapshotList +from intersight.model.virtualization_vmware_virtual_machine_snapshot_list_all_of import VirtualizationVmwareVirtualMachineSnapshotListAllOf +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_all_of import VirtualizationVmwareVirtualNetworkInterfaceAllOf from intersight.model.virtualization_vmware_virtual_network_interface_list import VirtualizationVmwareVirtualNetworkInterfaceList @@ -5445,6 +5529,8 @@ from intersight.model.workflow_task_metadata_list_all_of import WorkflowTaskMetadataListAllOf from intersight.model.workflow_task_metadata_relationship import WorkflowTaskMetadataRelationship from intersight.model.workflow_task_metadata_response import WorkflowTaskMetadataResponse +from intersight.model.workflow_task_notification import WorkflowTaskNotification +from intersight.model.workflow_task_notification_all_of import WorkflowTaskNotificationAllOf from intersight.model.workflow_task_retry_info import WorkflowTaskRetryInfo from intersight.model.workflow_task_retry_info_all_of import WorkflowTaskRetryInfoAllOf from intersight.model.workflow_template_evaluation import WorkflowTemplateEvaluation @@ -5496,6 +5582,8 @@ from intersight.model.workflow_workflow_metadata_list_all_of import WorkflowWorkflowMetadataListAllOf from intersight.model.workflow_workflow_metadata_relationship import WorkflowWorkflowMetadataRelationship from intersight.model.workflow_workflow_metadata_response import WorkflowWorkflowMetadataResponse +from intersight.model.workflow_workflow_notification import WorkflowWorkflowNotification +from intersight.model.workflow_workflow_notification_all_of import WorkflowWorkflowNotificationAllOf from intersight.model.workflow_workflow_properties import WorkflowWorkflowProperties from intersight.model.workflow_workflow_properties_all_of import WorkflowWorkflowPropertiesAllOf from intersight.model.workflow_workflow_task import WorkflowWorkflowTask diff --git a/intersight/rest.py b/intersight/rest.py index 4827604eee..4cf3baaf50 100644 --- a/intersight/rest.py +++ b/intersight/rest.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/intersight/signing.py b/intersight/signing.py index 34e28ad6ff..bccaf8761c 100644 --- a/intersight/signing.py +++ b/intersight/signing.py @@ -1,9 +1,9 @@ """ Cisco Intersight - Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. This document was created on 2021-08-16T17:23:52Z. # noqa: E501 + Cisco Intersight is a management platform delivered as a service with embedded analytics for your Cisco and 3rd party IT infrastructure. This platform offers an intelligent level of management that enables IT organizations to analyze, simplify, and automate their environments in more advanced ways than the prior generations of tools. Cisco Intersight provides an integrated and intuitive management experience for resources in the traditional data center as well as at the edge. With flexible deployment options to address complex security needs, getting started with Intersight is quick and easy. Cisco Intersight has deep integration with Cisco UCS and HyperFlex systems allowing for remote deployment, configuration, and ongoing maintenance. The model-based deployment works for a single system in a remote location or hundreds of systems in a data center and enables rapid, standardized configuration and deployment. It also streamlines maintaining those systems whether you are working with small or very large configurations. The Intersight OpenAPI document defines the complete set of properties that are returned in the HTTP response. From that perspective, a client can expect that no additional properties are returned, unless these properties are explicitly defined in the OpenAPI document. However, when a client uses an older version of the Intersight OpenAPI document, the server may send additional properties because the software is more recent than the client. In that case, the client may receive properties that it does not know about. Some generated SDKs perform a strict validation of the HTTP response body against the OpenAPI document. # noqa: E501 - The version of the OpenAPI document: 1.0.9-4437 + The version of the OpenAPI document: 1.0.9-4506 Contact: intersight@cisco.com Generated by: https://openapi-generator.tech """ diff --git a/setup.py b/setup.py index 35d76455c3..e8328a1144 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages NAME = "intersight" -VERSION = "1.0.9.4437" +VERSION = "1.0.9.4506" REQUIRES = [ "urllib3 >= 1.25.3", "python-dateutil",